Commit e520d7c6 by Zhenyao Mo Committed by Commit Bot

Skip DepthTexturesWithMipmaps on Win Intel.

BUG=angleproject:1706 TEST=Win Intel HD 530 Debug bot on GPU FYI waterfall Change-Id: I9037e777f42654e7030bcf197e81d0c118bb792d Reviewed-on: https://chromium-review.googlesource.com/428221Reviewed-by: 's avatarCorentin Wallez <cwallez@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Zhenyao Mo <zmo@chromium.org> Commit-Queue: Corentin Wallez <cwallez@chromium.org>
parent 7b57b9d7
...@@ -3538,10 +3538,12 @@ T UNorm(double value) ...@@ -3538,10 +3538,12 @@ T UNorm(double value)
// Test rendering a depth texture with mipmaps. // Test rendering a depth texture with mipmaps.
TEST_P(Texture2DTestES3, DepthTexturesWithMipmaps) TEST_P(Texture2DTestES3, DepthTexturesWithMipmaps)
{ {
//TODO(cwallez) this is failing on Intel Win7 OpenGL // TODO(cwallez) this is failing on Intel Win7 OpenGL.
if (IsIntel() && IsWindows() && IsOpenGL()) // TODO(zmo) this is faling on Win Intel HD 530 Debug.
// http://anglebugs.com/1706
if (IsIntel() && IsWindows())
{ {
std::cout << "Test skipped on Intel OpenGL." << std::endl; std::cout << "Test skipped on Win Intel." << std::endl;
return; return;
} }
......
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