mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 00:20:42 -05:00
kms: avoid using redundant g* and GL* types
A small, pedantic change to remove the use of redundant gint and GLuint types instead of int and unsigned int. Reviewed-by: Neil Roberts <neil@linux.intel.com>
This commit is contained in:
parent
056daad850
commit
40b14c6084
@ -49,7 +49,7 @@ typedef struct _CoglDisplayKMS
|
|||||||
drmModeEncoder *encoder;
|
drmModeEncoder *encoder;
|
||||||
drmModeModeInfo mode;
|
drmModeModeInfo mode;
|
||||||
drmModeCrtcPtr saved_crtc;
|
drmModeCrtcPtr saved_crtc;
|
||||||
gint width, height;
|
int width, height;
|
||||||
} CoglDisplayKMS;
|
} CoglDisplayKMS;
|
||||||
|
|
||||||
typedef struct _CoglOnscreenKMS
|
typedef struct _CoglOnscreenKMS
|
||||||
@ -58,9 +58,9 @@ typedef struct _CoglOnscreenKMS
|
|||||||
|
|
||||||
uint32_t fb_id[2];
|
uint32_t fb_id[2];
|
||||||
struct gbm_bo *bo[2];
|
struct gbm_bo *bo[2];
|
||||||
GLuint fb, color_rb[2], depth_rb;
|
unsigned int fb, color_rb[2], depth_rb;
|
||||||
EGLImageKHR image[2];
|
EGLImageKHR image[2];
|
||||||
gint current_frame;
|
int current_frame;
|
||||||
} CoglOnscreenKMS;
|
} CoglOnscreenKMS;
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
|
Loading…
Reference in New Issue
Block a user