We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1642bc9 commit 0eb77b2Copy full SHA for 0eb77b2
llvm/include/llvm/Frontend/HLSL/HLSLRootSignature.h
@@ -219,9 +219,9 @@ struct DescriptorTableClause {
219
220
void setDefaultFlags(llvm::dxbc::RootSignatureVersion Version) {
221
if (Version == llvm::dxbc::RootSignatureVersion::V1_0) {
222
- Flags = DescriptorRangeFlags::DataVolatile;
+ Flags = DescriptorRangeFlags::DescriptorsVolatile;
223
if (Type != ClauseType::Sampler)
224
- Flags |= DescriptorRangeFlags::DescriptorsVolatile;
+ Flags |= DescriptorRangeFlags::DataVolatile;
225
return;
226
}
227
0 commit comments