diff options
Diffstat (limited to 'src/egl.h')
-rw-r--r-- | src/egl.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -11,7 +11,11 @@ struct egl { EGLSurface surface; }; -void egl_create_window(struct egl *egl, struct wl_surface *wl_surface, uint32_t width, uint32_t height); +void egl_create_window( + struct egl *egl, + struct wl_surface *wl_surface, + uint32_t width, + uint32_t height); void egl_create_context(struct egl *egl, struct wl_display *wl_display); void egl_log_error(const char *msg); void egl_make_current(struct egl *egl); |