1
0
Fork 0

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:
Robert Bragg 2011-11-28 22:43:15 +00:00
parent 056daad850
commit 40b14c6084

View file

@ -49,7 +49,7 @@ typedef struct _CoglDisplayKMS
drmModeEncoder *encoder;
drmModeModeInfo mode;
drmModeCrtcPtr saved_crtc;
gint width, height;
int width, height;
} CoglDisplayKMS;
typedef struct _CoglOnscreenKMS
@ -58,9 +58,9 @@ typedef struct _CoglOnscreenKMS
uint32_t fb_id[2];
struct gbm_bo *bo[2];
GLuint fb, color_rb[2], depth_rb;
unsigned int fb, color_rb[2], depth_rb;
EGLImageKHR image[2];
gint current_frame;
int current_frame;
} CoglOnscreenKMS;
gboolean