summaryrefslogtreecommitdiffstats
path: root/src/gui/rhi/qrhi_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/rhi/qrhi_p.h')
-rw-r--r--src/gui/rhi/qrhi_p.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/gui/rhi/qrhi_p.h b/src/gui/rhi/qrhi_p.h
index b0cf9e3469..972aed6fd8 100644
--- a/src/gui/rhi/qrhi_p.h
+++ b/src/gui/rhi/qrhi_p.h
@@ -297,6 +297,7 @@ public:
Vertex,
TessellationControl,
TessellationEvaluation,
+ Geometry,
Fragment,
Compute
};
@@ -351,8 +352,9 @@ public:
VertexStage = 1 << 0,
TessellationControlStage = 1 << 1,
TessellationEvaluationStage = 1 << 2,
- FragmentStage = 1 << 3,
- ComputeStage = 1 << 4
+ GeometryStage = 1 << 3,
+ FragmentStage = 1 << 4,
+ ComputeStage = 1 << 5
};
Q_DECLARE_FLAGS(StageFlags, StageFlag)
@@ -1673,7 +1675,8 @@ public:
ThreeDimensionalTextures,
RenderTo3DTextureSlice,
TextureArrays,
- Tessellation
+ Tessellation,
+ GeometryShader
};
enum BeginFrameFlag {