Commit 04d7be3f by Yuly Novikov Committed by Commit Bot

Skip InstancingTest.NonIndexed* with non-zero Offset on Mac Mini 8.1

Bug: angleproject:5271 Change-Id: I644b28670ce0501407797f7ae7e749a66a63d84e Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2508975Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
parent 646cf5b2
...@@ -122,6 +122,10 @@ class InstancingTest : public ANGLETest ...@@ -122,6 +122,10 @@ class InstancingTest : public ANGLETest
// Unknown problem. FL9_3 is not officially supported anyway. // Unknown problem. FL9_3 is not officially supported anyway.
ANGLE_SKIP_TEST_IF(IsD3D11_FL93() && geometry == Quad && draw == NonIndexed); ANGLE_SKIP_TEST_IF(IsD3D11_FL93() && geometry == Quad && draw == NonIndexed);
// http://anglebug.com/5271
ANGLE_SKIP_TEST_IF(IsOSX() && IsIntelUHD630Mobile() && IsDesktopOpenGL() &&
draw == NonIndexed && offset != 0);
// The window is divided into kMaxDrawn slices of size kDrawSize. // The window is divided into kMaxDrawn slices of size kDrawSize.
// The slice drawn into is determined by the instance datum. // The slice drawn into is determined by the instance datum.
// The instance data array selects all the slices in order. // The instance data array selects all the slices in order.
......
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