Commit 25858166 by Geoff Lang Committed by Commit Bot

Skip several multiview tests on Windows NVIDIA after P400 upgrade.

BUG=angleproject:2228 Change-Id: If1ba74973e0c116e17de8ab77de712e281233d04 Reviewed-on: https://chromium-review.googlesource.com/753795Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Commit-Queue: Geoff Lang <geofflang@chromium.org>
parent 5e5438fe
...@@ -1428,6 +1428,9 @@ TEST_P(MultiviewRenderPrimitiveTest, Points) ...@@ -1428,6 +1428,9 @@ TEST_P(MultiviewRenderPrimitiveTest, Points)
return; return;
} }
// Test failing on P400 graphics card (anglebug.com/2228)
ANGLE_SKIP_TEST_IF(IsWindows() && IsD3D11() && IsNVIDIA());
const std::string vsSource = const std::string vsSource =
"#version 300 es\n" "#version 300 es\n"
"#extension GL_OVR_multiview : require\n" "#extension GL_OVR_multiview : require\n"
...@@ -1867,6 +1870,9 @@ TEST_P(MultiviewRenderTest, DivisorUpdatedOnProgramChange) ...@@ -1867,6 +1870,9 @@ TEST_P(MultiviewRenderTest, DivisorUpdatedOnProgramChange)
return; return;
} }
// Test failing on P400 graphics card (anglebug.com/2228)
ANGLE_SKIP_TEST_IF(IsWindows() && IsD3D11() && IsNVIDIA());
GLVertexArray vao; GLVertexArray vao;
glBindVertexArray(vao); glBindVertexArray(vao);
GLBuffer vbo; GLBuffer vbo;
...@@ -2013,6 +2019,9 @@ TEST_P(MultiviewRenderTest, FlatInterpolation) ...@@ -2013,6 +2019,9 @@ TEST_P(MultiviewRenderTest, FlatInterpolation)
return; return;
} }
// Test failing on P400 graphics card (anglebug.com/2228)
ANGLE_SKIP_TEST_IF(IsWindows() && IsD3D11() && IsNVIDIA());
// TODO(mradev): Find out why this fails on Win10 Intel HD 630 D3D11 // TODO(mradev): Find out why this fails on Win10 Intel HD 630 D3D11
// (http://anglebug.com/2062) // (http://anglebug.com/2062)
ANGLE_SKIP_TEST_IF(IsWindows() && IsIntel() && IsD3D11()); ANGLE_SKIP_TEST_IF(IsWindows() && IsIntel() && IsD3D11());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment