Commit b14752c2 by Alexis Hetu Committed by Alexis Hétu

Fixed signed/unsigned mismatch

Change-Id: Ibd7a099fa0a25dbddb1733b81101abc82ddd3f4c Reviewed-on: https://swiftshader-review.googlesource.com/14008Tested-by: 's avatarAlexis Hétu <sugoi@google.com> Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com>
parent ab2dd506
...@@ -1596,7 +1596,7 @@ GLenum Context::getPixels(const GLvoid **data, GLsizei imageSize) const ...@@ -1596,7 +1596,7 @@ GLenum Context::getPixels(const GLvoid **data, GLsizei imageSize) const
if(mState.pixelUnpackBuffer->name) if(mState.pixelUnpackBuffer->name)
{ {
if(mState.pixelUnpackBuffer->isMapped() || if(mState.pixelUnpackBuffer->isMapped() ||
(mState.pixelUnpackBuffer->size() < imageSize) || (mState.pixelUnpackBuffer->size() < static_cast<size_t>(imageSize)) ||
((*data) && (imageSize % static_cast<GLsizei>((ptrdiff_t)(*data))))) ((*data) && (imageSize % static_cast<GLsizei>((ptrdiff_t)(*data)))))
{ {
return GL_INVALID_OPERATION; return GL_INVALID_OPERATION;
......
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