Commit 7eb168bb authored by ynovikov's avatar ynovikov Committed by Commit bot

Skip EXTMultisampleCompatibilityTest.DrawAlphaOneAndResolve on NVIDIA Shield

BUG=700060
CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel

Review-Url: https://codereview.chromium.org/2741853005
Cr-Commit-Position: refs/heads/master@{#456197}
parent de0c3cc3
...@@ -195,6 +195,15 @@ TEST_F(EXTMultisampleCompatibilityTest, DrawAlphaOneAndResolve) { ...@@ -195,6 +195,15 @@ TEST_F(EXTMultisampleCompatibilityTest, DrawAlphaOneAndResolve) {
return; return;
} }
#if defined(OS_ANDROID)
// TODO: Figure out why this fails on NVIDIA Shield. crbug.com/700060.
std::string renderer(reinterpret_cast<const char*>(glGetString(GL_RENDERER)));
std::string version(reinterpret_cast<const char*>(glGetString(GL_VERSION)));
if (renderer.find("NVIDIA Tegra") != std::string::npos &&
version.find("OpenGL ES 3.2 NVIDIA 361.00") != std::string::npos)
return;
#endif
// SAMPLE_ALPHA_TO_ONE is specified to transform alpha values of // SAMPLE_ALPHA_TO_ONE is specified to transform alpha values of
// covered samples to 1.0. In order to detect it, we use non-1.0 // covered samples to 1.0. In order to detect it, we use non-1.0
// alpha. // alpha.
......
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