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
196
196
.. code-block ::
197
197
198
198
// Shader stages
199
- class ShaderStage ;
199
+ class DXILShaderStage ;
200
200
201
- def compute : ShaderStage ;
202
- def pixel : ShaderStage ;
203
- def vertex : ShaderStage ;
201
+ def compute : DXILShaderStage ;
202
+ def pixel : DXILShaderStage ;
203
+ def vertex : DXILShaderStage ;
204
204
...
205
205
206
206
Shader Attribute Specification
@@ -259,9 +259,9 @@ stages predicated on DXIL version as list of records of the following class
259
259
260
260
.. code-block ::
261
261
262
- class VersionedStages<Version minver, list<ShaderStage > sts> {
262
+ class VersionedStages<Version minver, list<DXILShaderStage > sts> {
263
263
Version dxil_version = minver;
264
- list<ShaderStage > shader_stages = sts;
264
+ list<DXILShaderStage > shader_stages = sts;
265
265
}
266
266
267
267
Following is an example specification of valid stages for ``DXIL1_0 ``,
You can’t perform that action at this time.
0 commit comments