File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,14 +33,14 @@ DXContainerYAML::ShaderFeatureFlags::ShaderFeatureFlags(uint64_t FlagData) {
33
33
DXContainerYAML::RootSignatureDesc::RootSignatureDesc (
34
34
const dxbc::RootSignatureDesc &Data)
35
35
: Version(Data.Version) {
36
- #define ROOT_ELEMENT_FLAG (Num, Val, Str ) \
36
+ #define ROOT_ELEMENT_FLAG (Num, Val, Str ) \
37
37
Val = (Data.Flags & (uint32_t )dxbc::RootElementFlag::Val) > 0 ;
38
38
#include " llvm/BinaryFormat/DXContainerConstants.def"
39
39
}
40
40
41
41
uint32_t DXContainerYAML::RootSignatureDesc::getEncodedFlags () {
42
42
uint64_t Flag = 0 ;
43
- #define ROOT_ELEMENT_FLAG (Num, Val, Str ) \
43
+ #define ROOT_ELEMENT_FLAG (Num, Val, Str ) \
44
44
if (Val) \
45
45
Flag |= (uint32_t )dxbc::RootElementFlag::Val;
46
46
#include " llvm/BinaryFormat/DXContainerConstants.def"
You can’t perform that action at this time.
0 commit comments