Commit acd39d18 by Shahbaz Youssefi Committed by Commit Bot

Vulkan: Enable 16bpp texture tests

Possibly fixed in 6c6be2ce. Bug: angleproject:2649 Bug: angleproject:2656 Change-Id: I0ab97e2d828b6b8643a68ab9b28fc0ccd8f08c48 Reviewed-on: https://chromium-review.googlesource.com/c/1289350Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org>
parent c2b576d9
......@@ -149,9 +149,6 @@ class SixteenBppTextureTestES3 : public SixteenBppTextureTest
// Samples from the texture, renders to it, generates mipmaps etc.
TEST_P(SixteenBppTextureTest, RGB565Validation)
{
// TODO(lucferron): Diagnose and fix http://anglebug.com/2656
ANGLE_SKIP_TEST_IF(IsVulkan() && (IsAndroid() || (IsWindows() && IsIntel())));
GLuint test;
memcpy(&test, &GLColor::black, 4);
......@@ -179,10 +176,6 @@ TEST_P(SixteenBppTextureTest, RGB565Validation)
// Samples from the texture, renders to it, generates mipmaps etc.
TEST_P(SixteenBppTextureTest, RGBA5551Validation)
{
// TODO(lucferron): Diagnose and fix
// http://anglebug.com/2649
ANGLE_SKIP_TEST_IF(IsVulkan() && (IsAndroid() || (IsWindows() && IsIntel())));
GLushort pixels[4] =
{
0xF801, // Red
......@@ -209,10 +202,6 @@ TEST_P(SixteenBppTextureTest, RGBA5551Validation)
// Based on WebGL test conformance/textures/texture-attachment-formats.html
TEST_P(SixteenBppTextureTest, RGBA5551ClearAlpha)
{
// TODO(lucferron): Diagnose and fix
// http://anglebug.com/2649
ANGLE_SKIP_TEST_IF(IsVulkan() && (IsAndroid() || (IsWindows() && IsIntel())));
GLTexture tex;
GLFramebuffer fbo;
......
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