QSGBasicGeometryNode Class
The QSGBasicGeometryNode class serves as a baseclass for geometry based nodes. 更多...
头文件: | #include <QSGBasicGeometryNode> |
qmake: | QT += quick |
基类: | QSGNode |
派生类: |
公有函数
~QSGBasicGeometryNode() | |
const QSGGeometry * | geometry() const |
QSGGeometry * | geometry() |
void | setGeometry(QSGGeometry *geometry) |
- 20 个公有函数继承自 QSGNode
详细描述
The QSGBasicGeometryNode class serves as a baseclass for geometry based nodes.
The QSGBasicGeometryNode class should not be used by itself. It is only encapsulates shared functionality between the QSGGeometryNode and QSGClipNode classes.
Note: All classes with QSG prefix should be used solely on the scene graph's rendering thread. See Scene Graph and Rendering for more information.
成员函数
QSGBasicGeometryNode::~QSGBasicGeometryNode()
Deletes this QSGBasicGeometryNode.
If the node has the flag QSGNode::OwnsGeometry set, it will also delete the geometry object it is pointing to. This flag is not set by default.
const QSGGeometry *QSGBasicGeometryNode::geometry() const
Returns this node's geometry.
The geometry is null by default.
参见 setGeometry().
QSGGeometry *QSGBasicGeometryNode::geometry()
Returns this node's geometry.
The geometry is null by default.
void QSGBasicGeometryNode::setGeometry(QSGGeometry *geometry)
Sets the geometry of this node to geometry.
If the node has the flag QSGNode::OwnsGeometry set, it will also delete the geometry object it is pointing to. This flag is not set by default.
If the geometry is changed without calling setGeometry() again, the user must also mark the geometry as dirty using QSGNode::markDirty().