Commit eb1df14b by Jonah Ryan-Davis Committed by Commit Bot

Suppress MultisampledRenderToTextureBenchmark on Pixel2/GLES

This test started failing, but we don't care about performance on GLES so we can suppress it for now. Bug: angleproject:5120 Change-Id: If5eb865956ee5fb6f798d110d42e3493294bc18e Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2443590 Commit-Queue: Jonah Ryan-Davis <jonahr@google.com> Commit-Queue: Yuly Novikov <ynovikov@chromium.org> Reviewed-by: 's avatarShahbaz Youssefi <syoussefi@chromium.org> Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org>
parent a8872e6d
...@@ -106,6 +106,12 @@ MultisampledRenderToTextureBenchmark::MultisampledRenderToTextureBenchmark() ...@@ -106,6 +106,12 @@ MultisampledRenderToTextureBenchmark::MultisampledRenderToTextureBenchmark()
{ {
mSkipTest = true; mSkipTest = true;
} }
// Fails on Pixel 2 GLES: http://anglebug.com/5120
if (IsPixel2() && GetParam().eglParameters.renderer == EGL_PLATFORM_ANGLE_TYPE_OPENGLES_ANGLE)
{
mSkipTest = true;
}
} }
void MultisampledRenderToTextureBenchmark::initializeBenchmark() void MultisampledRenderToTextureBenchmark::initializeBenchmark()
......
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