From 7b4d7f2ad69bf5c22d11466a0d9befa048ee0a1c Mon Sep 17 00:00:00 2001 From: Graeme Leese Date: Wed, 19 Sep 2018 18:04:50 +0100 Subject: [PATCH] Remove invalid execution mode in smoke test OriginLowerLeft is not valid, so use OriginUpperLeft. Components: Vulkan Affects: dEQP-VK.api.smoke.asm_triangle Change-Id: I14b2ac7ec2b56be228aa7de3442f605e8525f163 (cherry picked from commit c1d6ed4ac1b41773aa8043793bc6eebea47f1f5e) --- external/vulkancts/modules/vulkan/api/vktApiSmokeTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/vulkancts/modules/vulkan/api/vktApiSmokeTests.cpp b/external/vulkancts/modules/vulkan/api/vktApiSmokeTests.cpp index 70eaa84..e690496 100644 --- a/external/vulkancts/modules/vulkan/api/vktApiSmokeTests.cpp +++ b/external/vulkancts/modules/vulkan/api/vktApiSmokeTests.cpp @@ -159,7 +159,7 @@ void createTriangleAsmProgs (SourceCollections& dst) "%1 = OpExtInstImport \"GLSL.std.450\"\n" " OpMemoryModel Logical GLSL450\n" " OpEntryPoint Fragment %4 \"main\" %10\n" - " OpExecutionMode %4 OriginLowerLeft\n" + " OpExecutionMode %4 OriginUpperLeft\n" " OpSource ESSL 300\n" " OpName %4 \"main\"\n" " OpName %10 \"o_color\"\n" -- 2.7.4