Commit f9c595b4 by Yuly Novikov Committed by Commit Bot

Skip 3 SimpleStateChangeTestES31

DrawWithTextureThenDrawWithImage on Win Intel GL ClearThenSampleWithCompute on Linux AMD GL TransformFeedbackThenReadWithCompute on Win AMD Vulkan Bug: angleproject:5686, angleproject:5687, angleproject:5688 Change-Id: If380074389382bc7e9a8b8668c83fb9c8ef2084d Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2723291Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
parent 4f07f9b8
......@@ -4157,6 +4157,8 @@ TEST_P(SimpleStateChangeTestES31, DrawWithTextureThenDrawWithImage)
{
// http://anglebug.com/5593
ANGLE_SKIP_TEST_IF(IsD3D11());
// http://anglebug.com/5686
ANGLE_SKIP_TEST_IF(IsWindows() && IsIntel() && IsDesktopOpenGL());
GLint maxFragmentImageUniforms;
glGetIntegerv(GL_MAX_FRAGMENT_IMAGE_UNIFORMS, &maxFragmentImageUniforms);
......@@ -4443,6 +4445,9 @@ void main()
// In the Vulkan backend, the clear is deferred and should be flushed correctly.
TEST_P(SimpleStateChangeTestES31, ClearThenSampleWithCompute)
{
// http://anglebug.com/5687
ANGLE_SKIP_TEST_IF(IsLinux() && IsAMD() && IsDesktopOpenGL());
constexpr GLsizei kSize = 1;
GLTexture color;
......@@ -4516,6 +4521,9 @@ void main()
// it in a dispatch call works correctly. This requires an implicit barrier in between the calls.
TEST_P(SimpleStateChangeTestES31, TransformFeedbackThenReadWithCompute)
{
// http://anglebug.com/5687
ANGLE_SKIP_TEST_IF(IsWindows() && IsAMD() && IsVulkan());
constexpr GLsizei kBufferSize = sizeof(float) * 4 * 6;
GLBuffer buffer;
glBindBuffer(GL_TRANSFORM_FEEDBACK_BUFFER, buffer);
......
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