Commit 0a8a3ea2 by Courtney Goeltzenleuchter Committed by Commit Bot

Vulkan: Skip nested pow test on NVIDIA, Windows

Suspect possible NVIDIA driver issue as unable to repro on some NVIDIA, Windows, NVIDIA configurations. Test: angle_end2end_tests --gtest_filter=GLSLTest.NestedPowStatements/ES3_Vulkan Bug: chromium:1127866 Change-Id: Ic6a95915af72aab086753a0e0199ac1dee8bfb62 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2410560Reviewed-by: 's avatarShahbaz Youssefi <syoussefi@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 233cc31b
...@@ -2605,6 +2605,9 @@ TEST_P(GLSLTest, RenderTrisWithPointCoord) ...@@ -2605,6 +2605,9 @@ TEST_P(GLSLTest, RenderTrisWithPointCoord)
// Convers a bug with the integer pow statement workaround. // Convers a bug with the integer pow statement workaround.
TEST_P(GLSLTest, NestedPowStatements) TEST_P(GLSLTest, NestedPowStatements)
{ {
// https://crbug.com/1127866 - possible NVIDIA driver issue
ANGLE_SKIP_TEST_IF(IsNVIDIA() && IsVulkan() && IsWindows());
constexpr char kFS[] = constexpr char kFS[] =
"precision mediump float;\n" "precision mediump float;\n"
"float func(float v)\n" "float func(float v)\n"
......
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