Skip to content

Commit 101489d

Browse files
committed
Rename ShaderStage to DXILShaderStage
1 parent 0a0b652 commit 101489d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

llvm/docs/DirectX/DXILOpTableGenDesign.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -196,11 +196,11 @@ as follows
196196
.. code-block::
197197
198198
// Shader stages
199-
class ShaderStage;
199+
class DXILShaderStage;
200200
201-
def compute : ShaderStage;
202-
def pixel : ShaderStage;
203-
def vertex : ShaderStage;
201+
def compute : DXILShaderStage;
202+
def pixel : DXILShaderStage;
203+
def vertex : DXILShaderStage;
204204
...
205205
206206
Shader Attribute Specification
@@ -259,9 +259,9 @@ stages predicated on DXIL version as list of records of the following class
259259

260260
.. code-block::
261261
262-
class VersionedStages<Version minver, list<ShaderStage> sts> {
262+
class VersionedStages<Version minver, list<DXILShaderStage> sts> {
263263
Version dxil_version = minver;
264-
list<ShaderStage> shader_stages = sts;
264+
list<DXILShaderStage> shader_stages = sts;
265265
}
266266
267267
Following is an example specification of valid stages for ``DXIL1_0``,

0 commit comments

Comments
 (0)