From 34c750892a8a8bf7e3440ea25cf4c8c690a44827 Mon Sep 17 00:00:00 2001 From: dan sinclair Date: Mon, 18 Mar 2019 12:56:13 -0700 Subject: [vulkan] More MoltenVK suppressions (#378) This CL suppresses two more tests due to lack of std140 support for matrices in SPIRV-Cross. "compute_mat2x2.vkscript", "compute_mat3x2.vkscript" Issue #216. --- tests/run_tests.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/run_tests.py b/tests/run_tests.py index fd3b3e4..098a813 100755 --- a/tests/run_tests.py +++ b/tests/run_tests.py @@ -28,7 +28,15 @@ SUPPRESSIONS = { # No geometry shader on MoltenVK "draw_triangle_list_using_geom_shader.vkscript", # No tessellation shader on MoltenVK - "draw_triangle_list_using_tessellation.vkscript" + "draw_triangle_list_using_tessellation.vkscript", + # No std140 support for matrices in SPIRV-Cross + "compute_mat2x2.vkscript", + "compute_mat3x2.vkscript", + # Metal vertex shaders cannot simultaneously write to a buffer and return + # a value to the rasterizer rdar://48348476 + # https://github.com/KhronosGroup/MoltenVK/issues/527 + "multiple_ssbo_update_with_graphics_pipeline.vkscript", + "multiple_ubo_update_with_graphics_pipeline.vkscript" ] } -- cgit v1.2.3