-
Notifications
You must be signed in to change notification settings - Fork 948
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[naga] Make compaction preserve named types, even if unused.
Have `compact::compact` preserve entries in the `Module::types` arena if they have names. Future abstract type support will require the WGSL front end to compact the module before validation. Without this change, that will drop `alias` declarations, making it harder to test type validation.
- Loading branch information
Showing
3 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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 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 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 |
---|---|---|
@@ -1,9 +1,24 @@ | ||
; SPIR-V | ||
; Version: 1.1 | ||
; Generator: rspirv | ||
; Bound: 3 | ||
; Bound: 10 | ||
OpCapability Shader | ||
OpCapability Linkage | ||
%1 = OpExtInstImport "GLSL.std.450" | ||
OpMemoryModel Logical GLSL450 | ||
%2 = OpTypeVoid | ||
OpMemberDecorate %5 0 Offset 0 | ||
OpMemberDecorate %5 1 Offset 16 | ||
OpDecorate %6 ArrayStride 32 | ||
OpMemberDecorate %7 0 Offset 0 | ||
OpDecorate %7 Block | ||
OpDecorate %8 ArrayStride 4 | ||
OpMemberDecorate %9 0 Offset 0 | ||
OpDecorate %9 Block | ||
%2 = OpTypeVoid | ||
%3 = OpTypeFloat 32 | ||
%4 = OpTypeVector %3 4 | ||
%5 = OpTypeStruct %3 %4 | ||
%6 = OpTypeRuntimeArray %5 | ||
%7 = OpTypeStruct %6 | ||
%8 = OpTypeRuntimeArray %3 | ||
%9 = OpTypeStruct %8 |