Commit 785b20b7 by Luc Ferron Committed by Commit Bot

Vulkan: PointSprite suppress 3 tests that are failing the android tests

Bug: angleproject:2447 Change-Id: Ib5a8176e2836374fbeb70ccd05586495c388680b Reviewed-on: https://chromium-review.googlesource.com/1005438Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Commit-Queue: Luc Ferron <lucferron@chromium.org>
parent 4416247c
......@@ -143,6 +143,10 @@ TEST_P(PointSpritesTest, PointWithoutAttributesCompliance)
// http://anglebug.com/1643
ANGLE_SKIP_TEST_IF(IsAMD() && IsDesktopOpenGL() && IsWindows());
// TODO(lucferron): Failing on Android/Vulkan. Investigate and fix.
// http://anglebug.com/2447
ANGLE_SKIP_TEST_IF(IsVulkan() && IsAndroid());
const std::string fs =
R"(precision mediump float;
void main()
......@@ -177,6 +181,10 @@ TEST_P(PointSpritesTest, PointCoordRegressionTest)
// http://anglebug.com/1643
ANGLE_SKIP_TEST_IF(IsAMD() && IsDesktopOpenGL() && IsWindows());
// TODO(lucferron): Failing on Android/Vulkan. Investigate and fix.
// http://anglebug.com/2447
ANGLE_SKIP_TEST_IF(IsVulkan() && IsAndroid());
const std::string fs =
R"(precision mediump float;
varying vec4 v_color;
......@@ -406,6 +414,10 @@ TEST_P(PointSpritesTest, PointSizeDeclaredButUnused)
// spites.
TEST_P(PointSpritesTest, PointSpriteAlternatingDrawTypes)
{
// TODO(lucferron): Failing on Android/Vulkan. Investigate and fix.
// http://anglebug.com/2447
ANGLE_SKIP_TEST_IF(IsVulkan() && IsAndroid());
const std::string pointFS =
R"(precision mediump float;
void main()
......
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