-
Notifications
You must be signed in to change notification settings - Fork 15.4k
[DirectX] Updating DXContainer logic to read version 1.2 of static samplers #160184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
joaosaffran
merged 23 commits into
llvm:main
from
joaosaffran:obj2yaml/static-sampler-view
Sep 26, 2025
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
787c776
adding yaml representation and updating write logic
joaosaffran 57fd710
fix test
joaosaffran d72adfe
adding missing test
joaosaffran 23803b7
Merge branch 'main' into obj2yaml/root-signature-1.2
joaosaffran fefd58c
fix test
joaosaffran 13d945d
Merge branch 'main' into obj2yaml/static-sampler-view
joaosaffran 1d0cbd3
adding samplers_iterator
joaosaffran e530bcc
this was easier than I thought
joaosaffran 79ea587
adding new test
joaosaffran 367ac8c
Merge branch 'main' into obj2yaml/root-signature-1.2
joaosaffran a08c05e
Merge branch 'obj2yaml/root-signature-1.2' of github.com:joaosaffran/…
joaosaffran 159388d
Merge branch 'obj2yaml/root-signature-1.2' into obj2yaml/static-sampl…
joaosaffran 905d5d3
clean up
joaosaffran b73bf24
clean up
joaosaffran ddf9945
changing size and remove untested parameters
joaosaffran 284901c
adding suggested comment
joaosaffran 73e6bb5
addressing inbelic comments
joaosaffran 159cd57
addressing inbelic comments
joaosaffran b7f07aa
format
joaosaffran b5ecf7f
Merge branch 'obj2yaml/root-signature-1.2' into obj2yaml/static-sampl…
joaosaffran efcd873
remove test
joaosaffran 9c2c1d3
Merge branch 'obj2yaml/root-signature-1.2' into obj2yaml/static-sampl…
joaosaffran 74a5956
Merge branch 'main' into obj2yaml/static-sampler-view
joaosaffran File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
llvm/test/ObjectYAML/DXContainer/RootSignature-StaticSamplers1.3.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,65 @@ | ||
| # RUN: yaml2obj %s | obj2yaml | FileCheck %s | ||
|
|
||
| --- !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: 80 | ||
| RootSignature: | ||
| Version: 3 | ||
| NumRootParameters: 0 | ||
| RootParametersOffset: 24 | ||
| NumStaticSamplers: 1 | ||
| StaticSamplersOffset: 24 | ||
| Parameters: [] | ||
| Samplers: | ||
| - Filter: MinLinearMagMipPoint | ||
| AddressU: Wrap | ||
| AddressV: Mirror | ||
| AddressW: MirrorOnce | ||
| MipLODBias: 1.23 | ||
| MaxAnisotropy: 20 | ||
| ComparisonFunc: LessEqual | ||
| BorderColor: TransparentBlack | ||
| MinLOD: 4.56 | ||
| MaxLOD: 8.90 | ||
| ShaderRegister: 31 | ||
| RegisterSpace: 32 | ||
| ShaderVisibility: Mesh | ||
| SAMPLER_FLAG_UINT_BORDER_COLOR: true | ||
| AllowInputAssemblerInputLayout: true | ||
| DenyGeometryShaderRootAccess: true | ||
|
|
||
| #CHECK: - Name: RTS0 | ||
| #CHECK-NEXT: Size: 80 | ||
| #CHECK-NEXT: RootSignature: | ||
| #CHECK-NEXT: Version: 3 | ||
| #CHECK-NEXT: NumRootParameters: 0 | ||
| #CHECK-NEXT: RootParametersOffset: 24 | ||
| #CHECK-NEXT: NumStaticSamplers: 1 | ||
| #CHECK-NEXT: StaticSamplersOffset: 24 | ||
| #CHECK-NEXT: Parameters: [] | ||
| #CHECK-NEXT: Samplers: | ||
| #CHECK-NEXT: - Filter: MinLinearMagMipPoint | ||
| #CHECK-NEXT: AddressU: Wrap | ||
| #CHECK-NEXT: AddressV: Mirror | ||
| #CHECK-NEXT: AddressW: MirrorOnce | ||
| #CHECK-NEXT: MipLODBias: 1.23 | ||
| #CHECK-NEXT: MaxAnisotropy: 20 | ||
| #CHECK-NEXT: ComparisonFunc: LessEqual | ||
| #CHECK-NEXT: BorderColor: TransparentBlack | ||
| #CHECK-NEXT: MinLOD: 4.56 | ||
| #CHECK-NEXT: MaxLOD: 8.9 | ||
| #CHECK-NEXT: ShaderRegister: 31 | ||
| #CHECK-NEXT: RegisterSpace: 32 | ||
| #CHECK-NEXT: ShaderVisibility: Mesh | ||
| #CHECK-NEXT: SAMPLER_FLAG_UINT_BORDER_COLOR: true | ||
| #CHECK-NEXT: AllowInputAssemblerInputLayout: true | ||
| #CHECK-NEXT: DenyGeometryShaderRootAccess: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.