diff options
| author | Yong He <yonghe@outlook.com> | 2024-10-14 14:03:01 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-14 14:03:01 -0700 |
| commit | f857815a8c0a4e8d4f35c9a49c655545fb692195 (patch) | |
| tree | 78fecf229aece79d27d4d42664eda267706670c5 /docs | |
| parent | 5126d58ab2252357014df4136a4a1e07c7c2d5f4 (diff) | |
Misc build fixes. (#5271)
* Don't use __assume for SLANG_ASSERT + build fixes.
* Fix.
* build slang-wasm conditionally
* Fix.
* revert retry open file
* revert include.
* another attempt of silencing compiler warnings.
* revert assume change.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/user-guide/a3-02-reference-capability-atoms.md | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/docs/user-guide/a3-02-reference-capability-atoms.md b/docs/user-guide/a3-02-reference-capability-atoms.md index 993c581b6..f8f1b8eb7 100644 --- a/docs/user-guide/a3-02-reference-capability-atoms.md +++ b/docs/user-guide/a3-02-reference-capability-atoms.md @@ -42,6 +42,9 @@ Targets `spirv` > Represents the SPIR-V code generation target. +`wgsl` +> Represents the WebGPU shading language code generation target. + Stages ---------------------- *Capabilities to specify code generation stages (`vertex`, `fragment`...)* @@ -690,9 +693,15 @@ Compound Capabilities `cpp_cuda_glsl_hlsl_spirv` > CPP, CUDA, GLSL, HLSL, and SPIRV code-gen targets +`cpp_cuda_glsl_hlsl_spirv_wgsl` +> CPP, CUDA, GLSL, HLSL, SPIRV and WGSL code-gen targets + `cpp_cuda_glsl_hlsl_metal_spirv` > CPP, CUDA, GLSL, HLSL, Metal and SPIRV code-gen targets +`cpp_cuda_glsl_hlsl_metal_spirv_wgsl` +> CPP, CUDA, GLSL, HLSL, Metal, SPIRV and WGSL code-gen targets + `cpp_cuda_hlsl` > CPP, CUDA, and HLSL code-gen targets @@ -708,9 +717,15 @@ Compound Capabilities `cpp_glsl_hlsl_spirv` > CPP, GLSL, HLSL, and SPIRV code-gen targets +`cpp_glsl_hlsl_spirv_wgsl` +> CPP, GLSL, HLSL, SPIRV and WGSL code-gen targets + `cpp_glsl_hlsl_metal_spirv` > CPP, GLSL, HLSL, Metal, and SPIRV code-gen targets +`cpp_glsl_hlsl_metal_spirv_wgsl` +> CPP, GLSL, HLSL, Metal, SPIRV and WGSL code-gen targets + `cpp_hlsl` > CPP, and HLSL code-gen targets @@ -726,12 +741,18 @@ Compound Capabilities `cuda_glsl_hlsl_metal_spirv` > CUDA, GLSL, HLSL, Metal, and SPIRV code-gen targets +`cuda_glsl_hlsl_metal_spirv_wgsl` +> CUDA, GLSL, HLSL, Metal, SPIRV and WGSL code-gen targets + `cuda_glsl_spirv` > CUDA, GLSL, and SPIRV code-gen targets `cuda_glsl_metal_spirv` > CUDA, GLSL, Metal, and SPIRV code-gen targets +`cuda_glsl_metal_spirv_wgsl` +> CUDA, GLSL, Metal, SPIRV and WGSL code-gen targets + `cuda_hlsl` > CUDA, and HLSL code-gen targets @@ -741,12 +762,21 @@ Compound Capabilities `glsl_hlsl_spirv` > GLSL, HLSL, and SPIRV code-gen targets +`glsl_hlsl_spirv_wgsl` +> GLSL, HLSL, SPIRV and WGSL code-gen targets + `glsl_hlsl_metal_spirv` > GLSL, HLSL, Metal, and SPIRV code-gen targets +`glsl_hlsl_metal_spirv_wgsl` +> GLSL, HLSL, Metal, SPIRV and WGSL code-gen targets + `glsl_metal_spirv` > GLSL, Metal, and SPIRV code-gen targets +`glsl_metal_spirv_wgsl` +> GLSL, Metal, SPIRV and WGSL code-gen targets + `glsl_spirv` > GLSL, and SPIRV code-gen targets |
