osmesa: Fix osmesa_context.DataType type.
authorVinson Lee <vlee@freedesktop.org>
Sat, 28 Jan 2012 06:36:04 +0000 (07:36 +0100)
committerBrian Paul <brianp@vmware.com>
Tue, 31 Jan 2012 14:43:36 +0000 (07:43 -0700)
Fixes these GCC warnings.
osmesa.c: In function ‘osmesa_renderbuffer_storage’:
osmesa.c:417: warning: comparison is always false due to limited range of data type
osmesa.c:423: warning: comparison is always false due to limited range of data type
osmesa.c:431: warning: comparison is always false due to limited range of data type
osmesa.c:437: warning: comparison is always false due to limited range of data type
osmesa.c:447: warning: comparison is always false due to limited range of data type
osmesa.c:453: warning: comparison is always false due to limited range of data type
osmesa.c:463: warning: comparison is always false due to limited range of data type
osmesa.c:466: warning: comparison is always false due to limited range of data type
osmesa.c:476: warning: comparison is always false due to limited range of data type
osmesa.c:479: warning: comparison is always false due to limited range of data type

Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Signed-off-by: Brian Paul <brianp@vmware.com>
src/mesa/drivers/osmesa/osmesa.c

index 0a42741418594c932fa134cab70f736dbe3ca0e7..0ec2d377172aaf194632aa924a0f3a5d674e4382 100644 (file)
@@ -75,7 +75,7 @@ struct osmesa_context
    GLvoid *rowaddr[MAX_HEIGHT];        /*< address of first pixel in each image row */
    GLboolean yup;              /*< TRUE  -> Y increases upward */
                                /*< FALSE -> Y increases downward */
-   GLboolean DataType;
+   GLenum DataType;
 };