Enable most C* end-to-end tests on OpenGL ES.
This enables all the C* tests which are also enabled on desktop GL. BUG=dawn:580 Change-Id: I71cf500a19fc4f81e0de47483d9b1de49df9bf76 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/34500 Reviewed-by: Corentin Wallez <cwallez@chromium.org> Reviewed-by: Austin Eng <enga@chromium.org> Commit-Queue: Stephen White <senorblanco@chromium.org>
This commit is contained in:
parent
f995e4adc1
commit
ab59a10f2c
|
@ -102,4 +102,5 @@ DAWN_INSTANTIATE_TEST(ClipSpaceTest,
|
|||
D3D12Backend(),
|
||||
MetalBackend(),
|
||||
OpenGLBackend(),
|
||||
OpenGLESBackend(),
|
||||
VulkanBackend());
|
||||
|
|
|
@ -1061,4 +1061,5 @@ DAWN_INSTANTIATE_TEST(ColorStateTest,
|
|||
D3D12Backend(),
|
||||
MetalBackend(),
|
||||
OpenGLBackend(),
|
||||
OpenGLESBackend(),
|
||||
VulkanBackend());
|
||||
|
|
|
@ -1077,6 +1077,7 @@ TEST_P(CompressedTextureBCFormatTest, CopyMultiple2DArrayLayers) {
|
|||
TEST_P(CompressedTextureBCFormatTest, UnalignedDynamicUploader) {
|
||||
// CopyT2B for compressed texture formats is unimplemented on OpenGL.
|
||||
DAWN_SKIP_TEST_IF(IsOpenGL());
|
||||
DAWN_SKIP_TEST_IF(IsOpenGLES());
|
||||
|
||||
utils::UnalignDynamicUploader(device);
|
||||
|
||||
|
@ -1106,6 +1107,7 @@ DAWN_INSTANTIATE_TEST(CompressedTextureBCFormatTest,
|
|||
D3D12Backend(),
|
||||
MetalBackend(),
|
||||
OpenGLBackend(),
|
||||
OpenGLESBackend(),
|
||||
VulkanBackend(),
|
||||
VulkanBackend({"use_temporary_buffer_in_texture_to_texture_copy"}));
|
||||
|
||||
|
|
|
@ -176,4 +176,5 @@ DAWN_INSTANTIATE_TEST(ComputeCopyStorageBufferTests,
|
|||
D3D12Backend(),
|
||||
MetalBackend(),
|
||||
OpenGLBackend(),
|
||||
OpenGLESBackend(),
|
||||
VulkanBackend());
|
||||
|
|
|
@ -111,4 +111,5 @@ DAWN_INSTANTIATE_TEST(ComputeIndirectTests,
|
|||
D3D12Backend(),
|
||||
MetalBackend(),
|
||||
OpenGLBackend(),
|
||||
OpenGLESBackend(),
|
||||
VulkanBackend());
|
||||
|
|
|
@ -101,4 +101,5 @@ DAWN_INSTANTIATE_TEST(ComputeSharedMemoryTests,
|
|||
D3D12Backend(),
|
||||
MetalBackend(),
|
||||
OpenGLBackend(),
|
||||
OpenGLESBackend(),
|
||||
VulkanBackend());
|
||||
|
|
|
@ -324,4 +324,5 @@ DAWN_INSTANTIATE_TEST(ComputeStorageBufferBarrierTests,
|
|||
D3D12Backend(),
|
||||
MetalBackend(),
|
||||
OpenGLBackend(),
|
||||
OpenGLESBackend(),
|
||||
VulkanBackend());
|
||||
|
|
|
@ -1612,4 +1612,5 @@ DAWN_INSTANTIATE_TEST(CopyTests_B2B,
|
|||
D3D12Backend(),
|
||||
MetalBackend(),
|
||||
OpenGLBackend(),
|
||||
OpenGLESBackend(),
|
||||
VulkanBackend());
|
||||
|
|
|
@ -163,6 +163,7 @@ TEST_P(CopyTextureForBrowserTests, PassthroughCopy) {
|
|||
// OpenGL tests fails due to 'WriteTexture' unimplemented.
|
||||
// Related bug : crbug.com/dawn/483
|
||||
DAWN_SKIP_TEST_IF(IsOpenGL());
|
||||
DAWN_SKIP_TEST_IF(IsOpenGLES());
|
||||
|
||||
constexpr uint32_t kWidth = 10;
|
||||
constexpr uint32_t kHeight = 1;
|
||||
|
@ -232,4 +233,5 @@ DAWN_INSTANTIATE_TEST(CopyTextureForBrowserTests,
|
|||
D3D12Backend(),
|
||||
MetalBackend(),
|
||||
OpenGLBackend(),
|
||||
OpenGLESBackend(),
|
||||
VulkanBackend());
|
||||
|
|
|
@ -331,4 +331,5 @@ DAWN_INSTANTIATE_TEST(CreateReadyPipelineTest,
|
|||
D3D12Backend(),
|
||||
MetalBackend(),
|
||||
OpenGLBackend(),
|
||||
OpenGLESBackend(),
|
||||
VulkanBackend());
|
||||
|
|
|
@ -136,4 +136,5 @@ DAWN_INSTANTIATE_TEST(CullingTest,
|
|||
D3D12Backend(),
|
||||
MetalBackend(),
|
||||
OpenGLBackend(),
|
||||
OpenGLESBackend(),
|
||||
VulkanBackend());
|
||||
|
|
Loading…
Reference in New Issue