Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 0a8a3ea

Browse files
courtney-gCommit Bot
authored and
Commit Bot
committed
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/+/2410560 Reviewed-by: Shahbaz Youssefi <[email protected]> Reviewed-by: Jamie Madill <[email protected]> Commit-Queue: Jamie Madill <[email protected]>
1 parent 233cc31 commit 0a8a3ea

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/tests/gl_tests/GLSLTest.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2605,6 +2605,9 @@ TEST_P(GLSLTest, RenderTrisWithPointCoord)
26052605
// Convers a bug with the integer pow statement workaround.
26062606
TEST_P(GLSLTest, NestedPowStatements)
26072607
{
2608+
// https://crbug.com/1127866 - possible NVIDIA driver issue
2609+
ANGLE_SKIP_TEST_IF(IsNVIDIA() && IsVulkan() && IsWindows());
2610+
26082611
constexpr char kFS[] =
26092612
"precision mediump float;\n"
26102613
"float func(float v)\n"

0 commit comments

Comments
 (0)