You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Each member in a `ConstantBuffer` will be emitted as `uniform` parameter in a uniform block.
138
-
StructuredBuffer and ByteAddressBuffer are translated to a shader storage buffer with `readonly`layout.
139
-
RWStructuredBuffer and RWByteAddressBuffer are translated to a shader storage buffer with `read-write`layout.
138
+
StructuredBuffer and ByteAddressBuffer are translated to a shader storage buffer with `readonly`access.
139
+
RWStructuredBuffer and RWByteAddressBuffer are translated to a shader storage buffer with `read-write`access.
140
140
RasterizerOrderedStructuredBuffer and RasterizerOrderedByteAddressBuffer will use an extension, `SPV_EXT_fragment_shader_interlock`.
141
141
142
-
If you need to apply a different buffer layout for indivisual StructuredBuffer, you can specify the layout as a second generic argument to StructuredBuffer. E.g., StructuredBuffer<T, Std140Layout>, StructuredBuffer<T, Std430Layout> or StructuredBuffer<T, ScalarLayout>.
142
+
If you need to apply a different buffer layout for indivisual `ConstantBuffer` or `StructuredBuffer`, you can specify the layout as a second generic argument. E.g., `ConstantBuffer<T, Std430DataLayout>`, `StructuredBuffer<T, Std140DataLayout>`, `StructuredBuffer<T, Std430DataLayout>` or `StructuredBuffer<T, ScalarDataLayout>`.
143
143
144
-
Note that there are compiler options, "-fvk-use-scalar-layout" and "-force-glsl-scalar-layout".
144
+
Note that there are compiler options, "-fvk-use-scalar-layout" / "-force-glsl-scalar-layout" and "-fvk-use-dx-layout".
145
145
These options do the same but they are applied globally.
146
146
147
147
148
148
ParameterBlock for SPIR-V target
149
149
--------------------------------
150
150
151
151
`ParameterBlock` is a Slang generic type for binding uniform parameters.
152
-
It is similar to `ConstantBuffer` in HLSL, and`ParameterBlock` can include not only constant parameters but also descriptors such as Texture2D or StructuredBuffer.
152
+
In contrast to `ConstantBuffer`, a`ParameterBlock<T>` introduces a new descriptor set ID for resource/sampler handles defined in the element type `T`.
153
153
154
-
`ParameterBlock` is designed specifically for d3d/vulkan/metal, so that parameters are laid out more naturally on these platforms. For Vulkan, when a ParameterBlock doesn't contain nested parameter block fields, it always maps to a single descriptor set, with a dedicated set number and every resources is placed into the set with binding index starting from 0.
154
+
`ParameterBlock` is designed specifically for D3D12/Vulkan/Metal/WebGPU, so that parameters defined in `T` can be placed into an independent descriptor table/descriptor set/argument buffer/binding group.
155
+
156
+
For example, when targeting Vulkan, when a ParameterBlock doesn't contain nested parameter block fields, it will always map to a single descriptor set, with a dedicated set number and every resources is placed into the set with binding index starting from 0. This allows the user application to create and pre-populate the descriptor set and reuse it during command encoding, without explicilty specifying the binding index for each individual parameter.
155
157
156
158
When both ordinary data fields and resource typed fields exist in a parameter block, all ordinary data fields will be grouped together into a uniform buffer and appear as a binding 0 of the resulting descriptor set.
157
159
@@ -160,8 +162,8 @@ Push Constants
160
162
---------------------
161
163
162
164
By default, a `uniform` parameter defined in the parameter list of an entrypoint function is translated to a push constant in SPIRV, if the type of the parameter is ordinary data type (no resources/textures).
163
-
All `uniform`parameter defined in global scope are grouped together and placed in a default constant bbuffer. You can make a global uniform parameter laid out as a push constant by using the `[vk::push_constant]` attribute
164
-
on the uniform parameter.
165
+
All `uniform`parameters defined in global scope are grouped together and placed in a default constant buffer. You can make a global uniform parameter laid out as a push constant by using the `[vk::push_constant]` attribute
166
+
on the uniform parameter. All push constants follow the std430 layout by default.
165
167
166
168
Specialization Constants
167
169
------------------------
@@ -184,65 +186,6 @@ Alternatively, the GLSL `layout` syntax is also supported by Slang:
184
186
layout(constant_id = 1) const int MyConst = 1;
185
187
```
186
188
187
-
SPIR-V specific Compiler options
188
-
--------------------------------
189
-
190
-
The following compiler options are specific to SPIR-V.
191
-
192
-
### -emit-spirv-directly
193
-
Generate SPIR-V output directly (default)
194
-
It cannot be used with -emit-spirv-via-glsl
195
-
196
-
### -emit-spirv-via-glsl
197
-
Generate SPIR-V output by compiling to glsl source first, then use glslang compiler to produce SPIRV from the glsl.
198
-
It cannot be used with -emit-spirv-directly
199
-
200
-
### -g
201
-
Include debug information in the generated code, where possible.
202
-
When targeting SPIR-V, this option emits [SPIR-V NonSemantic Shader DebugInfo Instructions](https://github.com/KhronosGroup/SPIRV-Registry/blob/main/nonsemantic/NonSemantic.Shader.DebugInfo.100.asciidoc).
203
-
204
-
### -O<optimization-level>
205
-
Set the optimization level.
206
-
Under `-O0` option, Slang will not perform extensive inlining for all functions calls, instead it will preserve the call graph as much as possible to help with understanding the SPIRV structure and diagnosing any downstream toolchain issues.
207
-
208
-
### -fvk-{b|s|t|u}-shift <N> <space>
209
-
For example '-fvk-b-shift <N> <space>' shifts by N the inferred binding
210
-
numbers for all resources in 'b' registers of space <space>. For a resource attached with :register(bX, <space>)
211
-
but not [vk::binding(...)], sets its Vulkan descriptor set to <space> and binding number to X + N. If you need to
212
-
shift the inferred binding numbers for more than one space, provide more than one such option. If more than one
213
-
such option is provided for the same space, the last one takes effect. If you need to shift the inferred binding
Make data accessed through ConstantBuffer, ParameterBlock, StructuredBuffer, ByteAddressBuffer and general pointers follow the 'scalar' layout when targeting GLSL or SPIRV.
229
-
230
-
### -fvk-use-gl-layout
231
-
Use std430 layout instead of D3D buffer layout for raw buffer load/stores.
232
-
233
-
### -fvk-use-dx-layout
234
-
Pack members using FXCs member packing rules when targeting GLSL or SPIRV.
235
-
236
-
### -fvk-use-entrypoint-name
237
-
Uses the entrypoint name from the source instead of 'main' in the spirv output.
238
-
239
-
### -fspv-reflect
240
-
Include reflection decorations in the resulting SPIRV for shader parameters.
241
-
242
-
### -spirv-core-grammar
243
-
A path to a specific spirv.core.grammar.json to use when generating SPIR-V output
244
-
245
-
246
189
SPIR-V specific Attributes
247
190
--------------------------
248
191
@@ -291,13 +234,13 @@ When there are more than one entry point, the default behavior will prevent a sh
291
234
To generate a valid SPIR-V with multiple entry points, use `-fvk-use-entrypoint-name` compiler option to disable the renaming behavior and preserve the entry point names.
292
235
293
236
294
-
Memory pointer is experimental
237
+
Global memory pointers
295
238
------------------------------
296
239
297
-
Slang supports memory pointers when targetting SPIRV. See [an example and explanation](convenience-features.html#pointers-limited).
240
+
Slang supports global memory pointers when targetting SPIRV. See [an example and explanation](convenience-features.html#pointers-limited).
298
241
299
-
When a memory pointer points to a physical memory location, the pointer will be translated to a PhysicalStorageBuffer storage class in SPIRV.
300
-
When a slang module uses a pointer, the resulting SPIRV will be using the SpvAddressingModelPhysicalStorageBuffer64 addressing mode. Modules with pointers but they don't point to a physical memory location will use SpvAddressingModelLogical addressing mode.
242
+
`float4*` in user code will be translated to a pointer in PhysicalStorageBuffer storage class in SPIRV.
243
+
When a slang module uses a pointer type, the resulting SPIRV will be using the SpvAddressingModelPhysicalStorageBuffer64 addressing mode. Modules without use of pointers will use SpvAddressingModelLogical addressing mode.
301
244
302
245
303
246
Matrix type translation
@@ -409,4 +352,62 @@ void main() {
409
352
This behavior is same to [how DXC translates Hull shader from HLSL to SPIR-V](https://github.com/Microsoft/DirectXShaderCompiler/blob/main/docs/SPIR-V.rst#patch-constant-function).
410
353
411
354
355
+
SPIR-V specific Compiler options
356
+
--------------------------------
357
+
358
+
The following compiler options are specific to SPIR-V.
359
+
360
+
### -emit-spirv-directly
361
+
Generate SPIR-V output directly (default)
362
+
It cannot be used with -emit-spirv-via-glsl
363
+
364
+
### -emit-spirv-via-glsl
365
+
Generate SPIR-V output by compiling to glsl source first, then use glslang compiler to produce SPIRV from the glsl.
366
+
It cannot be used with -emit-spirv-directly
367
+
368
+
### -g
369
+
Include debug information in the generated code, where possible.
370
+
When targeting SPIR-V, this option emits [SPIR-V NonSemantic Shader DebugInfo Instructions](https://github.com/KhronosGroup/SPIRV-Registry/blob/main/nonsemantic/NonSemantic.Shader.DebugInfo.100.asciidoc).
371
+
372
+
### -O<optimization-level>
373
+
Set the optimization level.
374
+
Under `-O0` option, Slang will not perform extensive inlining for all functions calls, instead it will preserve the call graph as much as possible to help with understanding the SPIRV structure and diagnosing any downstream toolchain issues.
375
+
376
+
### -fvk-{b|s|t|u}-shift <N> <space>
377
+
For example '-fvk-b-shift <N> <space>' shifts by N the inferred binding
378
+
numbers for all resources in 'b' registers of space <space>. For a resource attached with :register(bX, <space>)
379
+
but not [vk::binding(...)], sets its Vulkan descriptor set to <space> and binding number to X + N. If you need to
380
+
shift the inferred binding numbers for more than one space, provide more than one such option. If more than one
381
+
such option is provided for the same space, the last one takes effect. If you need to shift the inferred binding
Make data accessed through ConstantBuffer, ParameterBlock, StructuredBuffer, ByteAddressBuffer and general pointers follow the 'scalar' layout when targeting GLSL or SPIRV.
397
+
398
+
### -fvk-use-gl-layout
399
+
Use std430 layout instead of D3D buffer layout for raw buffer load/stores.
400
+
401
+
### -fvk-use-dx-layout
402
+
Pack members using FXCs member packing rules when targeting GLSL or SPIRV.
403
+
404
+
### -fvk-use-entrypoint-name
405
+
Uses the entrypoint name from the source instead of 'main' in the spirv output.
406
+
407
+
### -fspv-reflect
408
+
Include reflection decorations in the resulting SPIRV for shader parameters.
409
+
410
+
### -spirv-core-grammar
411
+
A path to a specific spirv.core.grammar.json to use when generating SPIR-V output
0 commit comments