This PR is updating Root Signature YAML to use enums, this is a required change to remove the use of to_underlying from DirectXContainer binary file. Closes: [#150676](https://github.com/llvm/llvm-project/issues/150676)
57 lines
1.6 KiB
YAML
57 lines
1.6 KiB
YAML
# RUN: yaml2obj %s | obj2yaml | FileCheck %s
|
|
|
|
## This test checks that we correctly compute the RootParametersOffset and
|
|
## StaticSamplersOffset when they are not explicitly provided
|
|
|
|
## StaticSamplerOffset
|
|
## = 24 (root signature header)
|
|
## + 12 (header) + 12 (root constants)
|
|
## + 12 (header) + 12 (v1.1 root descriptor)
|
|
## + 12 (header) + 8 (root descriptor table)
|
|
## + 24 (v1.1 descriptor range)
|
|
## = 116
|
|
|
|
# CHECK: RootParametersOffset: 24
|
|
# CHECK: StaticSamplersOffset: 116
|
|
|
|
--- !dxcontainer
|
|
Header:
|
|
Hash: [ 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
|
|
0x0, 0x0, 0x0, 0x0, 0x0, 0x0 ]
|
|
Version:
|
|
Major: 1
|
|
Minor: 0
|
|
PartCount: 1
|
|
PartOffsets: [ 60 ]
|
|
Parts:
|
|
- Name: RTS0
|
|
Size: 116
|
|
RootSignature:
|
|
Version: 2
|
|
NumRootParameters: 3
|
|
NumStaticSamplers: 0
|
|
Parameters:
|
|
- ParameterType: Constants32Bit
|
|
ShaderVisibility: All
|
|
Constants:
|
|
Num32BitValues: 16
|
|
ShaderRegister: 15
|
|
RegisterSpace: 14
|
|
- ParameterType: SRV
|
|
ShaderVisibility: All
|
|
Descriptor:
|
|
ShaderRegister: 31
|
|
RegisterSpace: 32
|
|
DATA_STATIC_WHILE_SET_AT_EXECUTE: true
|
|
- ParameterType: DescriptorTable
|
|
ShaderVisibility: All
|
|
Table:
|
|
NumRanges: 1
|
|
Ranges:
|
|
- RangeType: CBuffer
|
|
NumDescriptors: -1
|
|
BaseShaderRegister: 42
|
|
RegisterSpace: 43
|
|
OffsetInDescriptorsFromTableStart: 41
|
|
DESCRIPTORS_STATIC_KEEPING_BUFFER_BOUNDS_CHECKS: true
|