mirror of
https://github.com/brl/mutter.git
synced 2024-11-12 17:27:03 -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;
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user