We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f20688 commit 151e318Copy full SHA for 151e318
1 file changed
include/dxc/DXIL/DxilShaderFlags.h
@@ -220,6 +220,13 @@ class ShaderFlags {
220
bool GetRequiresGroup() const { return m_bRequiresGroup; }
221
222
private:
223
+ // Each of the shader flags are defined below within a bitfield to form the
224
+ // shader flag bitmask of a DXIL module.
225
+ // These shader flags are also used to set Shader Feature Info flags via the
226
+ // function ShaderFlags::GetFeatureInfo().
227
+ // For DXBC, these shader flags are also used to set Global Flags via the
228
+ // function ShaderFlags::GetGlobalFlags().
229
+
230
// Bit: 0
231
unsigned
232
m_bDisableOptimizations : 1; // D3D11_1_SB_GLOBAL_FLAG_SKIP_OPTIMIZATION
0 commit comments