RenderState Class
(QSGMaterialShader::RenderState)The QSGMaterialShader::RenderState encapsulates the current rendering state during a call to QSGMaterialShader::updateState(). More...
Header: | #include <RenderState> |
qmake: | QT += quick |
Public Types
enum | DirtyState { DirtyMatrix, DirtyOpacity } |
flags | DirtyStates |
Public Functions
QMatrix4x4 | combinedMatrix() const |
QOpenGLContext * | context() const |
float | determinant() const |
float | devicePixelRatio() const |
QRect | deviceRect() const |
DirtyStates | dirtyStates() const |
bool | isCachedMaterialDataDirty() const |
bool | isMatrixDirty() const |
bool | isOpacityDirty() const |
QMatrix4x4 | modelViewMatrix() const |
float | opacity() const |
QMatrix4x4 | projectionMatrix() const |
QRect | viewportRect() const |
Detailed Description
The QSGMaterialShader::RenderState encapsulates the current rendering state during a call to QSGMaterialShader::updateState().
The render state contains a number of accessors that the shader needs to respect in order to conform to the current state of the scene graph.
The instance is only valid inside a call to QSGMaterialShader::updateState() and should not be used outisde this function.
Member Type Documentation
enum RenderState::DirtyState
flags RenderState::DirtyStates
Constant | Value | Description |
---|---|---|
QSGMaterialShader::RenderState::DirtyMatrix | 0x0001 | Used to indicate that the matrix has changed and must be updated. |
QSGMaterialShader::RenderState::DirtyOpacity | 0x0002 | Used to indicate that the opacity has changed and must be updated. |
The DirtyStates type is a typedef for QFlags<DirtyState>. It stores an OR combination of DirtyState values.
Member Function Documentation
QMatrix4x4 RenderState::combinedMatrix() const
Returns the matrix combined of modelview matrix and project matrix.
QOpenGLContext *RenderState::context() const
Returns the QOpenGLContext that is being used for rendering
float RenderState::determinant() const
Returns the modelview determinant to be used for rendering.
float RenderState::devicePixelRatio() const
Returns the ratio between physical pixels and device-independent pixels to be used for rendering.
QRect RenderState::deviceRect() const
Returns the device rect of the surface being rendered to
DirtyStates RenderState::dirtyStates() const
Returns which rendering states that have changed and needs to be updated for geometry rendered with this material to conform to the current rendering state.
bool RenderState::isCachedMaterialDataDirty() const
bool RenderState::isMatrixDirty() const
Returns true
if the dirtyStates() contain the dirty matrix state, otherwise returns false
.
bool RenderState::isOpacityDirty() const
Returns true
if the dirtyStates() contains the dirty opacity state, otherwise returns false
.
QMatrix4x4 RenderState::modelViewMatrix() const
Returns the model view matrix.
If the material has the RequiresFullMatrix flag set, this is guaranteed to be the complete transform matrix calculated from the scenegraph.
However, if this flag is not set, the renderer may choose to alter this matrix. For example, it may pre-transform vertices on the CPU and set this matrix to identity.
In a situation such as the above, it is still possible to retrieve the actual matrix determinant by setting the RequiresDeterminant flag in the material and calling the determinant() accessor.
float RenderState::opacity() const
Returns the accumulated opacity to be used for rendering.
QMatrix4x4 RenderState::projectionMatrix() const
Returns the projection matrix.
QRect RenderState::viewportRect() const
Returns the viewport rect of the surface being rendered to.
© 2017 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.