Commit 3c754194 by Yuly Novikov Committed by Commit Bot

Skip Texture2DTestES3.UnpackSkipImages2D test on Adreno Android GLES

Due to a bug in Adreno glTexImage2D with GL_UNPACK_SKIP_IMAGES. BUG=angleproject:1429 TEST=Texture2DTestES3.UnpackSkipImages2D Change-Id: Iccb4cc968915a623f0aed099b81e759c6e4343f7 Reviewed-on: https://chromium-review.googlesource.com/356494Reviewed-by: 's avatarCorentin Wallez <cwallez@chromium.org> Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
parent ad6c0452
......@@ -3353,6 +3353,12 @@ TEST_P(Texture2DTestES3, UnpackSkipImages2D)
std::cout << "Test skipped on Intel OpenGL." << std::endl;
return;
}
// TODO(ynovikov): re-enable once root cause of http://anglebug.com/1429 is fixed
if (IsAndroid() && IsAdreno() && IsOpenGLES())
{
std::cout << "Test skipped on Adreno OpenGLES on Android." << std::endl;
return;
}
glBindTexture(GL_TEXTURE_2D, mTexture2D);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
......
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