aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/coreapi/qsgnode.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/scenegraph/coreapi/qsgnode.h')
-rw-r--r--src/quick/scenegraph/coreapi/qsgnode.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/quick/scenegraph/coreapi/qsgnode.h b/src/quick/scenegraph/coreapi/qsgnode.h
index 86977f7854..3dc2a865bd 100644
--- a/src/quick/scenegraph/coreapi/qsgnode.h
+++ b/src/quick/scenegraph/coreapi/qsgnode.h
@@ -95,9 +95,14 @@ public:
// QSGBasicGeometryNode
OwnsGeometry = 0x00010000,
OwnsMaterial = 0x00020000,
- OwnsOpaqueMaterial = 0x00040000
+ OwnsOpaqueMaterial = 0x00040000,
// Uppermost 8 bits are reserved for internal use.
+#ifndef qdoc
+ IsVisitableNode = 0x01000000
+#else
+ InternalReserved = 0x01000000
+#endif
};
Q_DECLARE_FLAGS(Flags, Flag)