From 9ec30a1d5ac99ec08f83ad262156a671c35a287d Mon Sep 17 00:00:00 2001 From: Ellie Hermaszewska Date: Wed, 16 Aug 2023 13:26:09 +0800 Subject: Remove -use-glsl-matrix-layout-modifier from test (#3104) Co-authored-by: Yong He --- tests/hlsl/glsl-matrix-layout.slang | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'tests') diff --git a/tests/hlsl/glsl-matrix-layout.slang b/tests/hlsl/glsl-matrix-layout.slang index 6178cc813..99ea77f0d 100644 --- a/tests/hlsl/glsl-matrix-layout.slang +++ b/tests/hlsl/glsl-matrix-layout.slang @@ -1,15 +1,13 @@ // Test that storage type lowering correctly handles matrix layout modifiers. -//TEST(compute, vulkan):COMPARE_COMPUTE_EX:-vk -compute -shaderobj -output-using-type -xslang -use-glsl-matrix-layout-modifier -xslang -fvk-use-gl-layout +//TEST(compute, vulkan):COMPARE_COMPUTE_EX:-vk -compute -shaderobj -output-using-type -xslang -fvk-use-gl-layout //TEST_INPUT:ubuffer(data=[0 0 0 0 0 0 0 0 0 0 0 0 0 ], stride=4):out,name=outputBuffer RWStructuredBuffer outputBuffer; struct MyStruct { - // row_major here is flipped by the `-use-glsl-matrix-layout-modifier` compiler option so - // it actually means column_major here. - row_major float3x2 mat; + column_major float3x2 mat; int otherVal[4]; } -- cgit v1.2.3