Skip to content

Commit 66ccb64

Browse files
Fix TileImageNotFragment test to use valid TileImageEXT type
Change-Id: Ia2e52c822378ea1b3522a48d975da59eaafad99b
1 parent 9ef6bdc commit 66ccb64

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/val/val_image_test.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11477,12 +11477,12 @@ TEST_F(ValidateImage, TileImageNotFragment) {
1147711477
%void = OpTypeVoid
1147811478
%func = OpTypeFunction %void
1147911479
%float = OpTypeFloat 32
11480-
%v4float = OpTypeVector %float 4
11481-
%ptr = OpTypePointer TileImageEXT %v4float
11480+
%image = OpTypeImage %float TileImageDataEXT 0 0 0 2 Unknown
11481+
%ptr = OpTypePointer TileImageEXT %image
1148211482
%var = OpVariable %ptr TileImageEXT
1148311483
%main = OpFunction %void None %func
1148411484
%label = OpLabel
11485-
%val = OpLoad %v4float %var
11485+
%val = OpLoad %image %var
1148611486
OpReturn
1148711487
OpFunctionEnd
1148811488
)";

0 commit comments

Comments
 (0)