From 3976bba29894024a2568abb8d2a89cb0659bb7a3 Mon Sep 17 00:00:00 2001 From: baldurk Date: Fri, 17 Nov 2023 01:43:19 +0000 Subject: [PATCH] Add missing documentation strings --- renderdoc/api/replay/control_types.h | 2 ++ renderdoc/api/replay/replay_enums.h | 16 ++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/renderdoc/api/replay/control_types.h b/renderdoc/api/replay/control_types.h index 1ddfff5f9..15e54bcfd 100644 --- a/renderdoc/api/replay/control_types.h +++ b/renderdoc/api/replay/control_types.h @@ -42,6 +42,7 @@ struct TaskGroupSize DOCUMENT("The size in the z dimension."); uint32_t z; + DOCUMENT(""); bool operator==(const TaskGroupSize &o) const { return x == o.x && y == o.y && z == o.z; } bool operator<(const TaskGroupSize &o) const { @@ -68,6 +69,7 @@ of indices. )"); uint32_t numVertices; + DOCUMENT(""); bool operator==(const MeshletSize &o) const { return numIndices == o.numIndices && numVertices == o.numVertices; diff --git a/renderdoc/api/replay/replay_enums.h b/renderdoc/api/replay/replay_enums.h index f334613c7..0883b5ae4 100644 --- a/renderdoc/api/replay/replay_enums.h +++ b/renderdoc/api/replay/replay_enums.h @@ -4495,6 +4495,22 @@ DOCUMENT(R"(A set of flags for ``ShaderStage`` stages The flag for :data:`ShaderStage.Compute`. +.. data:: Compute + + The flag for :data:`ShaderStage.Compute`. + +.. data:: Task + + The flag for :data:`ShaderStage.Task`. + +.. data:: Amplification + + The flag for :data:`ShaderStage.Amplification`. + +.. data:: Mesh + + The flag for :data:`ShaderStage.Mesh`. + .. data:: All A shorthand version with flags set for all stages together.