Commit bc4acb4e by Jamie Madill

dEQP: Update dEQP-GLES3 test expectations.

Tests are all green on my local Nvidia configuration. BUG=510822 BUG=angleproject:1071 Change-Id: I56d30089d574e795cfbd012ce7430896856d32ee Reviewed-on: https://chromium-review.googlesource.com/287517Tested-by: 's avatarJamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarKenneth Russell <kbr@chromium.org> Reviewed-by: 's avatarCorentin Wallez <cwallez@chromium.org>
parent 86170f33
...@@ -163,8 +163,10 @@ gl::Error TextureD3D::setImage(const gl::ImageIndex &index, GLenum type, ...@@ -163,8 +163,10 @@ gl::Error TextureD3D::setImage(const gl::ImageIndex &index, GLenum type,
{ {
if (unpack.skipRows != 0 || unpack.skipPixels != 0 || unpack.imageHeight != 0 || unpack.skipImages != 0) if (unpack.skipRows != 0 || unpack.skipPixels != 0 || unpack.imageHeight != 0 || unpack.skipImages != 0)
{ {
// TODO(jmadill): additional unpack parameters
// return no error here to work around dEQP-GLES3 failing to state reset.
UNIMPLEMENTED(); UNIMPLEMENTED();
return gl::Error(GL_INVALID_OPERATION, "unimplemented pixel store state"); return gl::Error(GL_NO_ERROR);
} }
ImageD3D *image = getImage(index); ImageD3D *image = getImage(index);
...@@ -185,7 +187,7 @@ gl::Error TextureD3D::setImage(const gl::ImageIndex &index, GLenum type, ...@@ -185,7 +187,7 @@ gl::Error TextureD3D::setImage(const gl::ImageIndex &index, GLenum type,
return error; return error;
} }
if (pixelData != NULL) if (pixelData != nullptr)
{ {
if (shouldUseSetData(image)) if (shouldUseSetData(image))
{ {
......
...@@ -1190,6 +1190,8 @@ ...@@ -1190,6 +1190,8 @@
'deqp_support/dEQP-GLES2-cases.txt.gz', 'deqp_support/dEQP-GLES2-cases.txt.gz',
'deqp_support/dEQP-GLES3-cases.txt.gz', 'deqp_support/dEQP-GLES3-cases.txt.gz',
'deqp_support/deqp_gles2_test_expectations.txt', 'deqp_support/deqp_gles2_test_expectations.txt',
'deqp_support/deqp_gles3_test_expectations.txt',
# TODO(jmadill): remove this once we roll ANGLE to Chrome
'deqp_support/deqp_test_expectations.txt', 'deqp_support/deqp_test_expectations.txt',
], ],
}, },
......
...@@ -29,8 +29,8 @@ const char *g_CaseListFiles[] = ...@@ -29,8 +29,8 @@ const char *g_CaseListFiles[] =
const char *g_TestExpectationsFiles[] = const char *g_TestExpectationsFiles[] =
{ {
"deqp_test_expectations.txt", "deqp_gles2_test_expectations.txt",
"deqp_test_expectations.txt", "deqp_gles3_test_expectations.txt",
}; };
class dEQPCaseList class dEQPCaseList
......
This source diff could not be displayed because it is too large. You can view the blob instead.
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