mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 16:10:41 -05:00
Swaps a few uses of gint for int
We've avoiding using the redundant glib typedefs such as guint, gint gpointer etc and prefer to use the equivalent C types so this patch removes a few uses of gint that slipped past review.
This commit is contained in:
parent
3161f1b0e6
commit
e1bd0b2090
@ -187,10 +187,10 @@ cogl_wayland_onscreen_get_shell_surface (CoglOnscreen *onscreen);
|
||||
|
||||
void
|
||||
cogl_wayland_onscreen_resize (CoglOnscreen *onscreen,
|
||||
gint width,
|
||||
gint height,
|
||||
gint offset_x,
|
||||
gint offset_y);
|
||||
int width,
|
||||
int height,
|
||||
int offset_x,
|
||||
int offset_y);
|
||||
#endif /* COGL_HAS_EGL_PLATFORM_WAYLAND_SUPPORT */
|
||||
|
||||
/**
|
||||
|
@ -501,10 +501,10 @@ cogl_wayland_onscreen_get_shell_surface (CoglOnscreen *onscreen)
|
||||
|
||||
void
|
||||
cogl_wayland_onscreen_resize (CoglOnscreen *onscreen,
|
||||
gint width,
|
||||
gint height,
|
||||
gint offset_x,
|
||||
gint offset_y)
|
||||
int width,
|
||||
int height,
|
||||
int offset_x,
|
||||
int offset_y)
|
||||
{
|
||||
CoglFramebuffer *fb;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user