Commit 03ace87e by Jamie Madill Committed by Commit Bot

Vulkan: Enable floating point end2end tests.

The upstream issue was marked fix so these tests should be passing. Bug: angleproject:2898 Change-Id: Ib5db7d3e06d2925730dcf691cf02d92b10983b99 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2553790Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent abcabb47
...@@ -306,7 +306,6 @@ TEST_P(SwizzleTest, RGB32F_2D) ...@@ -306,7 +306,6 @@ TEST_P(SwizzleTest, RGB32F_2D)
{ {
ANGLE_SKIP_TEST_IF(!isTextureSwizzleAvailable()); ANGLE_SKIP_TEST_IF(!isTextureSwizzleAvailable());
ANGLE_SKIP_TEST_IF(IsVulkan()); // anglebug.com/2898 - float textures
GLfloat data[] = {0.1f, 0.2f, 0.3f}; GLfloat data[] = {0.1f, 0.2f, 0.3f};
init2DTexture(GL_RGB32F, GL_RGB, GL_FLOAT, data); init2DTexture(GL_RGB32F, GL_RGB, GL_FLOAT, data);
runTest2D(); runTest2D();
......
...@@ -3234,9 +3234,6 @@ TEST_P(WebGLCompatibilityTest, RG32FTextures) ...@@ -3234,9 +3234,6 @@ TEST_P(WebGLCompatibilityTest, RG32FTextures)
TEST_P(WebGLCompatibilityTest, RGB32FTextures) TEST_P(WebGLCompatibilityTest, RGB32FTextures)
{ {
// TODO(syoussefi): Missing format support. http://anglebug.com/2898
ANGLE_SKIP_TEST_IF(IsVulkan());
constexpr float data[] = {1000.0f, -500.0f, 10.0f, 1.0f}; constexpr float data[] = {1000.0f, -500.0f, 10.0f, 1.0f};
for (auto extension : FloatingPointTextureExtensions) for (auto extension : FloatingPointTextureExtensions)
...@@ -3274,9 +3271,6 @@ TEST_P(WebGLCompatibilityTest, RGBA32FTextures) ...@@ -3274,9 +3271,6 @@ TEST_P(WebGLCompatibilityTest, RGBA32FTextures)
// http://anglebug.com/5357 // http://anglebug.com/5357
ANGLE_SKIP_TEST_IF(IsOpenGL() && IsOSX()); ANGLE_SKIP_TEST_IF(IsOpenGL() && IsOSX());
// TODO(syoussefi): Missing format support. http://anglebug.com/2898
ANGLE_SKIP_TEST_IF(IsVulkan());
constexpr float data[] = {7000.0f, 100.0f, 33.0f, -1.0f}; constexpr float data[] = {7000.0f, 100.0f, 33.0f, -1.0f};
for (auto extension : FloatingPointTextureExtensions) for (auto extension : FloatingPointTextureExtensions)
...@@ -3717,9 +3711,6 @@ TEST_P(WebGLCompatibilityTest, RGB16FTextures) ...@@ -3717,9 +3711,6 @@ TEST_P(WebGLCompatibilityTest, RGB16FTextures)
// http://anglebug.com/5357 // http://anglebug.com/5357
ANGLE_SKIP_TEST_IF(IsOpenGL() && IsOSX()); ANGLE_SKIP_TEST_IF(IsOpenGL() && IsOSX());
// TODO(syoussefi): Missing format support. http://anglebug.com/2898
ANGLE_SKIP_TEST_IF(IsVulkan());
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