Commit e731d8aa by Corentin Wallez Committed by Commit Bot

TextureTest: suppress failure for newly added test.

BUG=angleproject:1493 BUG=chromium:638323 Change-Id: I5cab149c735158fe810f002e47cc3c5c75bc503b Reviewed-on: https://chromium-review.googlesource.com/381951Reviewed-by: 's avatarCorentin Wallez <cwallez@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Corentin Wallez <cwallez@chromium.org>
parent 5a7e20ed
...@@ -3490,6 +3490,13 @@ T UNorm(double value) ...@@ -3490,6 +3490,13 @@ 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
if (IsIntel() && IsWindows() && IsOpenGL())
{
std::cout << "Test skipped on Intel OpenGL." << std::endl;
return;
}
const int size = getWindowWidth(); const int size = getWindowWidth();
auto dim = [size](int level) { return size >> level; }; auto dim = [size](int level) { return size >> level; };
......
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