File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff 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 ``,
You can’t perform that action at this time.
0 commit comments