spirv-reader: add ColMajor decoration as needed for end2end
Add ColMajor decoration to matrix test cases that ultimately become end2end test cases. Corresponds to end2end test fix in https://dawn-review.googlesource.com/c/dawn/+/103821 Change-Id: I30e9f706dcb935a6044ba650e5c9084363a1414b Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/104400 Kokoro: Kokoro <noreply+kokoro@google.com> Auto-Submit: David Neto <dneto@google.com> Reviewed-by: Antonio Maiorano <amaiorano@google.com> Commit-Queue: Antonio Maiorano <amaiorano@google.com>
This commit is contained in:
parent
be4b8cb4d1
commit
82177da767
|
@ -1301,6 +1301,7 @@ TEST_F(SpvModuleScopeVarParserTest, MatrixStrideDecoration_Natural_Dropped) {
|
|||
OpDecorate %s Block
|
||||
OpMemberDecorate %s 0 MatrixStride 8
|
||||
OpMemberDecorate %s 0 Offset 0
|
||||
OpMemberDecorate %s 0 ColMajor
|
||||
%void = OpTypeVoid
|
||||
%voidfn = OpTypeFunction %void
|
||||
%float = OpTypeFloat 32
|
||||
|
@ -1330,6 +1331,7 @@ TEST_F(SpvModuleScopeVarParserTest, MatrixStrideDecoration) {
|
|||
OpDecorate %s Block
|
||||
OpMemberDecorate %s 0 MatrixStride 64
|
||||
OpMemberDecorate %s 0 Offset 0
|
||||
OpMemberDecorate %s 0 ColMajor
|
||||
%void = OpTypeVoid
|
||||
%voidfn = OpTypeFunction %void
|
||||
%float = OpTypeFloat 32
|
||||
|
|
Loading…
Reference in New Issue