diff options
| author | Yong He <yonghe@outlook.com> | 2024-02-29 18:02:53 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-29 18:02:53 -0800 |
| commit | 3ade07303783605ddef8c0f0c5237952c903798d (patch) | |
| tree | d41b82eae557d82ad642812bd84a8c434d2e1bb3 /docs | |
| parent | 458d66300f7180a0e5d432a203225305a83fc222 (diff) | |
Fix various crashes when generating debug info. (#3650)
* Fix crash when generating debug info for geometry shaders.
* Fix.
* Fix source language field in DebugCompilationUnit.
* Fix.
* Emit DebugEntryPoint inst.
* Add trivial test.
* Cleanup.
* More cleanup.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/user-guide/08-compiling.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/user-guide/08-compiling.md b/docs/user-guide/08-compiling.md index a00b7670e..358246b5a 100644 --- a/docs/user-guide/08-compiling.md +++ b/docs/user-guide/08-compiling.md @@ -657,7 +657,7 @@ meanings of their `CompilerOptionValue` encodings. | LineDirectiveMode | Specifies the line directive mode to use the generated textual code such as HLSL or CUDA. `intValue0` encodes an value defined in the `SlangLineDirectiveMode` enum. | | Optimization | Specifies the optimization level. `intValue0` encodes the value for the setting defined in the `SlangOptimizationLevel` enum. | | Obfuscate | Specifies whether or not to turn on obfuscation. When obfuscation is on, Slang will strip variable and function names from the target code and replace them with hash values. `intValue0` encodes a bool value for the setting. | -| VulkanBindShift | Specifies the `-fvk-bind-shift` option. `intValue0` (lower 8 bits): kind, `intValue0` (higher bits): set; `intValue1`: shift. | +| VulkanBindShift | Specifies the `-fvk-bind-shift` option. `intValue0` (higher 8 bits): kind, `intValue0` (lower bits): set; `intValue1`: shift. | | VulkanBindGlobals | Specifies the `-fvk-bind-globals` option. `intValue0`: index, `intValue`: set. | | VulkanInvertY | Specifies the `-fvk-invert-y` option. `intValue0` specifies a bool value for the setting. | | VulkanUseEntryPointName | When set, will keep the original name of entrypoints as they are defined in the source instead of renaming them to `main`. `intValue0` specifies a bool value for the setting. | |
