From c63fdba6b39d7202da4aa0b40ab769343f365ba2 Mon Sep 17 00:00:00 2001 From: Daniel van Vugt Date: Thu, 15 Feb 2024 15:12:45 +0800 Subject: [PATCH] cogl/onscreen/glx: Remove extraneous spaces check-code-style was complaining about this. Part-of: --- cogl/cogl/winsys/cogl-onscreen-glx.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cogl/cogl/winsys/cogl-onscreen-glx.c b/cogl/cogl/winsys/cogl-onscreen-glx.c index e0b8ec6a4..e61089bbf 100644 --- a/cogl/cogl/winsys/cogl-onscreen-glx.c +++ b/cogl/cogl/winsys/cogl-onscreen-glx.c @@ -693,10 +693,10 @@ cogl_onscreen_glx_swap_region (CoglOnscreen *onscreen, * we only need it to throttle redraws. */ gboolean blit_sub_buffer_is_synchronized = - _cogl_winsys_has_feature (COGL_WINSYS_FEATURE_SWAP_REGION_SYNCHRONIZED); + _cogl_winsys_has_feature (COGL_WINSYS_FEATURE_SWAP_REGION_SYNCHRONIZED); - int framebuffer_width = cogl_framebuffer_get_width (framebuffer); - int framebuffer_height = cogl_framebuffer_get_height (framebuffer); + int framebuffer_width = cogl_framebuffer_get_width (framebuffer); + int framebuffer_height = cogl_framebuffer_get_height (framebuffer); int *rectangles = g_alloca (sizeof (int) * n_rectangles * 4); int i;