Commit 6f6504c9 by Jamie Madill Committed by Commit Bot

Suppress WebGL Mac end2end failures.

WebGLCompatibilityTest.R16FTextures/ES3_OpenGL WebGLCompatibilityTest.RG16FTextures/ES3_OpenGL WebGLCompatibilityTest.RGB16FTextures/ES3_OpenGL WebGLCompatibilityTest.RGBA16FTextures/ES3_OpenGL WebGLCompatibilityTest.RGBA32FTextures/ES3_OpenGL Bug: angleproject:5357 Change-Id: I63a98fc1dc7316db0a5203e3bc814d8751c1bf58 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2553789Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 46823b0b
...@@ -3271,6 +3271,9 @@ TEST_P(WebGLCompatibilityTest, RGB32FTextures) ...@@ -3271,6 +3271,9 @@ TEST_P(WebGLCompatibilityTest, RGB32FTextures)
TEST_P(WebGLCompatibilityTest, RGBA32FTextures) TEST_P(WebGLCompatibilityTest, RGBA32FTextures)
{ {
// http://anglebug.com/5357
ANGLE_SKIP_TEST_IF(IsOpenGL() && IsOSX());
// TODO(syoussefi): Missing format support. http://anglebug.com/2898 // TODO(syoussefi): Missing format support. http://anglebug.com/2898
ANGLE_SKIP_TEST_IF(IsVulkan()); ANGLE_SKIP_TEST_IF(IsVulkan());
...@@ -3591,6 +3594,9 @@ TEST_P(WebGLCompatibilityTest, HalfFloatBlend) ...@@ -3591,6 +3594,9 @@ TEST_P(WebGLCompatibilityTest, HalfFloatBlend)
TEST_P(WebGLCompatibilityTest, R16FTextures) TEST_P(WebGLCompatibilityTest, R16FTextures)
{ {
// http://anglebug.com/5357
ANGLE_SKIP_TEST_IF(IsOpenGL() && IsOSX());
constexpr float readPixelsData[] = {-5000.0f, 0.0f, 0.0f, 1.0f}; constexpr float readPixelsData[] = {-5000.0f, 0.0f, 0.0f, 1.0f};
const GLushort textureData[] = { const GLushort textureData[] = {
gl::float32ToFloat16(readPixelsData[0]), gl::float32ToFloat16(readPixelsData[1]), gl::float32ToFloat16(readPixelsData[0]), gl::float32ToFloat16(readPixelsData[1]),
...@@ -3648,6 +3654,9 @@ TEST_P(WebGLCompatibilityTest, R16FTextures) ...@@ -3648,6 +3654,9 @@ TEST_P(WebGLCompatibilityTest, R16FTextures)
TEST_P(WebGLCompatibilityTest, RG16FTextures) TEST_P(WebGLCompatibilityTest, RG16FTextures)
{ {
// http://anglebug.com/5357
ANGLE_SKIP_TEST_IF(IsOpenGL() && IsOSX());
constexpr float readPixelsData[] = {7108.0f, -10.0f, 0.0f, 1.0f}; constexpr float readPixelsData[] = {7108.0f, -10.0f, 0.0f, 1.0f};
const GLushort textureData[] = { const GLushort textureData[] = {
gl::float32ToFloat16(readPixelsData[0]), gl::float32ToFloat16(readPixelsData[1]), gl::float32ToFloat16(readPixelsData[0]), gl::float32ToFloat16(readPixelsData[1]),
...@@ -3705,6 +3714,9 @@ TEST_P(WebGLCompatibilityTest, RG16FTextures) ...@@ -3705,6 +3714,9 @@ TEST_P(WebGLCompatibilityTest, RG16FTextures)
TEST_P(WebGLCompatibilityTest, RGB16FTextures) TEST_P(WebGLCompatibilityTest, RGB16FTextures)
{ {
// http://anglebug.com/5357
ANGLE_SKIP_TEST_IF(IsOpenGL() && IsOSX());
// TODO(syoussefi): Missing format support. http://anglebug.com/2898 // TODO(syoussefi): Missing format support. http://anglebug.com/2898
ANGLE_SKIP_TEST_IF(IsVulkan()); ANGLE_SKIP_TEST_IF(IsVulkan());
...@@ -3767,6 +3779,9 @@ TEST_P(WebGLCompatibilityTest, RGB16FTextures) ...@@ -3767,6 +3779,9 @@ TEST_P(WebGLCompatibilityTest, RGB16FTextures)
TEST_P(WebGLCompatibilityTest, RGBA16FTextures) TEST_P(WebGLCompatibilityTest, RGBA16FTextures)
{ {
// http://anglebug.com/5357
ANGLE_SKIP_TEST_IF(IsOpenGL() && IsOSX());
ANGLE_SKIP_TEST_IF(IsOzone() && IsIntel()); ANGLE_SKIP_TEST_IF(IsOzone() && IsIntel());
constexpr float readPixelsData[] = {7000.0f, 100.0f, 33.0f, -1.0f}; constexpr float readPixelsData[] = {7000.0f, 100.0f, 33.0f, -1.0f};
......
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