diff options
author | Brian Paul <[email protected]> | 2011-11-29 07:33:47 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-11-30 06:57:37 -0700 |
commit | c67d9cfd9d5d04b5b32170616f75b34e0192304b (patch) | |
tree | 8416a8ffddb6b88198530eecfc13edcd58837737 /src/mesa | |
parent | c3a57841a3b51dc463b7fa5ca94b897917a86f20 (diff) |
mesa: fix signed/unsigned comparison warning
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/transformfeedback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/transformfeedback.c b/src/mesa/main/transformfeedback.c index b5fb98ecb27..11abd037d5c 100644 --- a/src/mesa/main/transformfeedback.c +++ b/src/mesa/main/transformfeedback.c @@ -614,7 +614,7 @@ _mesa_TransformFeedbackVaryings(GLuint program, GLsizei count, if (count < 0 || (bufferMode == GL_SEPARATE_ATTRIBS && - count > ctx->Const.MaxTransformFeedbackSeparateAttribs)) { + (GLuint) count > ctx->Const.MaxTransformFeedbackSeparateAttribs)) { _mesa_error(ctx, GL_INVALID_VALUE, "glTransformFeedbackVaryings(count=%d)", count); return; |