diff --git a/hw/kdrive/fbdev/fb_glamor.c b/hw/kdrive/fbdev/fb_glamor.c index 63bfc97230..8c8bf9cd0b 100644 --- a/hw/kdrive/fbdev/fb_glamor.c +++ b/hw/kdrive/fbdev/fb_glamor.c @@ -22,11 +22,11 @@ char *fbdev_glvnd_provider = NULL; -Bool es_allowed = TRUE; -Bool force_es = FALSE; -Bool fbGlamorAllowed = TRUE; -Bool fbForceGlamor = FALSE; -Bool fbXVAllowed = TRUE; +bool es_allowed = TRUE; +bool force_es = FALSE; +bool fbGlamorAllowed = TRUE; +bool fbForceGlamor = FALSE; +bool fbXVAllowed = TRUE; #define ARR_SIZE(x) (sizeof(x) / sizeof(*(x))) diff --git a/hw/kdrive/fbdev/fbdev.h b/hw/kdrive/fbdev/fbdev.h index 923f61cf29..36ab649912 100644 --- a/hw/kdrive/fbdev/fbdev.h +++ b/hw/kdrive/fbdev/fbdev.h @@ -22,6 +22,7 @@ #ifndef _KDRIVE_FBDEV_H_ #define _KDRIVE_FBDEV_H_ +#include #include #include #include @@ -51,7 +52,6 @@ typedef struct _fbdevScrPriv { Rotation randr; Bool shadow; #ifdef GLAMOR - Bool glamor_initialized; EGLDisplay display; EGLContext ctx; void* glamor_make_current; @@ -64,12 +64,12 @@ extern Bool fbDisableShadow; #ifdef GLAMOR extern char *fbdev_glvnd_provider; -extern Bool es_allowed; -extern Bool force_es; -extern Bool fbGlamorAllowed; -extern Bool fbForceGlamor; +extern bool es_allowed; +extern bool force_es; +extern bool fbGlamorAllowed; +extern bool fbForceGlamor; #ifdef XV -extern Bool fbXVAllowed; +extern bool fbXVAllowed; #endif #endif