Mesa (master): mesa: silence MSVC signed/ unsigned comparision warnings in transformfeedback.c

Brian Paul brianp at kemper.freedesktop.org
Mon Oct 29 23:57:04 UTC 2012


Module: Mesa
Branch: master
Commit: 8e45e38512a1f7c8b304b96226105da54e473d25
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=8e45e38512a1f7c8b304b96226105da54e473d25

Author: Brian Paul <brianp at vmware.com>
Date:   Sat Oct 27 08:58:19 2012 -0600

mesa: silence MSVC signed/unsigned comparision warnings in transformfeedback.c

Reviewed-by: Jose Fonseca <jfonseca at vmware.com>

---

 src/mesa/main/transformfeedback.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/mesa/main/transformfeedback.c b/src/mesa/main/transformfeedback.c
index 0669b3a..1afc0dc 100644
--- a/src/mesa/main/transformfeedback.c
+++ b/src/mesa/main/transformfeedback.c
@@ -277,7 +277,7 @@ _mesa_BeginTransformFeedback(GLenum mode)
 {
    struct gl_transform_feedback_object *obj;
    struct gl_transform_feedback_info *info;
-   int i;
+   GLuint i;
    GET_CURRENT_CONTEXT(ctx);
 
    obj = ctx->TransformFeedback.CurrentObject;
@@ -537,7 +537,7 @@ _mesa_TransformFeedbackVaryings(GLuint program, GLsizei count,
                                 const GLchar **varyings, GLenum bufferMode)
 {
    struct gl_shader_program *shProg;
-   GLuint i;
+   GLint i;
    GET_CURRENT_CONTEXT(ctx);
 
    switch (bufferMode) {
@@ -648,7 +648,7 @@ _mesa_GetTransformFeedbackVarying(GLuint program, GLuint index,
    }
 
    linked_xfb_info = &shProg->LinkedTransformFeedback;
-   if (index >= linked_xfb_info->NumVarying) {
+   if (index >= (GLuint) linked_xfb_info->NumVarying) {
       _mesa_error(ctx, GL_INVALID_VALUE,
                   "glGetTransformFeedbackVaryings(index=%u)", index);
       return;




More information about the mesa-commit mailing list