glamor: yInverted is a boolean value, so use the Bool type.
authorEric Anholt <eric@anholt.net>
Wed, 25 Dec 2013 19:36:35 +0000 (11:36 -0800)
committerEric Anholt <eric@anholt.net>
Sat, 15 Feb 2014 02:30:01 +0000 (18:30 -0800)
Signed-off-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Keith Packard <keithp@keithp.com>
Reviewed-by: Adam Jackson <ajax@redhat.com>
glamor/glamor.c
glamor/glamor_priv.h

index 5947d7f..4c962ac 100644 (file)
@@ -280,10 +280,10 @@ glamor_init(ScreenPtr screen, unsigned int flags)
         return FALSE;
 
     if (flags & GLAMOR_INVERTED_Y_AXIS) {
-        glamor_priv->yInverted = 1;
+        glamor_priv->yInverted = TRUE;
     }
     else
-        glamor_priv->yInverted = 0;
+        glamor_priv->yInverted = FALSE;
 
     if (!dixRegisterPrivateKey(glamor_screen_private_key, PRIVATE_SCREEN, 0)) {
         LogMessage(X_WARNING,
index f2bc002..53af353 100644 (file)
@@ -215,7 +215,7 @@ struct glamor_saved_procs {
 #define RENDER_IDEL_MAX 32
 
 typedef struct glamor_screen_private {
-    int yInverted;
+    Bool yInverted;
     unsigned int tick;
     enum glamor_gl_flavor gl_flavor;
     int has_pack_invert;