The QSGMaterialShader::RenderState encapsulates the current rendering state during a call to QSGMaterialShader::updateState (). 更多...
enum | DirtyState { DirtyMatrix, DirtyOpacity, DirtyCachedMaterialData, DirtyAll } |
flags | DirtyStates |
QMatrix4x4 | combinedMatrix () const |
QOpenGLContext * | context () const |
float | determinant () const |
float | devicePixelRatio () const |
QRect | deviceRect () const |
RenderState::DirtyStates | dirtyStates () const |
bool | isCachedMaterialDataDirty () const |
bool | isMatrixDirty () const |
bool | isOpacityDirty () const |
QMatrix4x4 | modelViewMatrix () const |
float | opacity () const |
QMatrix4x4 | projectionMatrix () const |
QRect | viewportRect () const |
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.
常量 | 值 | 描述 |
---|---|---|
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. |
QSGMaterialShader::RenderState::DirtyCachedMaterialData
|
0x0004
|
Used to indicate that the cached material data have changed and must be updated. |
QSGMaterialShader::RenderState::DirtyAll
|
0xFFFF
|
Used to indicate that everything needs to be updated. |
The DirtyStates type is a typedef for QFlags <DirtyState>. It stores an OR combination of DirtyState values.
Returns the matrix combined of modelview matrix and project matrix.
返回 QOpenGLContext that is being used for rendering
Returns the modelview determinant to be used for rendering.
Returns the ratio between physical pixels and device-independent pixels to be used for rendering.
Returns the device rect of the surface being rendered to
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.
返回
true
若
dirtyStates
() contains the dirty cached material state, otherwise returns
false
.
返回
true
若
dirtyStates
() contain the dirty matrix state, otherwise returns
false
.
返回
true
若
dirtyStates
() contains the dirty opacity state, otherwise returns
false
.
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.
Returns the accumulated opacity to be used for rendering.
Returns the projection matrix.
Returns the viewport rect of the surface being rendered to.