diff options
author | Christopher Michael <cp.michael@samsung.com> | 2020-01-15 09:39:21 -0500 |
---|---|---|
committer | Christopher Michael <cp.michael@samsung.com> | 2020-01-15 10:20:54 -0500 |
commit | db25045ffbe66da4337d41f98d0f04759d4c5ae8 (patch) | |
tree | c174df9ee585974bfb063696cde8b2893d3ef095 | |
parent | e71cfba201d977d4d81ccf5c39aad92a9200e05b (diff) | |
download | efl-db25045ffbe66da4337d41f98d0f04759d4c5ae8.tar.gz |
tests/ecore_wl2: Minor formatting fix
-rw-r--r-- | src/tests/ecore_wl2/ecore_wl2_test_window.c | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/src/tests/ecore_wl2/ecore_wl2_test_window.c b/src/tests/ecore_wl2/ecore_wl2_test_window.c index 86ff1145c3..12a7126b40 100644 --- a/src/tests/ecore_wl2/ecore_wl2_test_window.c +++ b/src/tests/ecore_wl2/ecore_wl2_test_window.c @@ -20,24 +20,25 @@ #define WIDTH 480 #define HEIGHT 360 -typedef struct _Test_Data { - Ecore_Wl2_Display *display; - Ecore_Wl2_Window *win; - Ecore_Wl2_Frame_Cb_Handle *frame_callback_handler; - Ecore_Event_Handler *handler; +typedef struct _Test_Data +{ + Ecore_Wl2_Display *display; + Ecore_Wl2_Window *win; + Ecore_Wl2_Frame_Cb_Handle *frame_callback_handler; + Ecore_Event_Handler *handler; - struct wl_surface *surface; - struct wl_egl_window *egl_window; + struct wl_surface *surface; + struct wl_egl_window *egl_window; - int width; - int height; - int frame_callback_count; + int width; + int height; + int frame_callback_count; #ifdef GL_GLES - EGLDisplay egl_display; - EGLConfig egl_conf; - EGLSurface egl_surface; - EGLContext egl_context; + EGLDisplay egl_display; + EGLConfig egl_conf; + EGLSurface egl_surface; + EGLContext egl_context; #endif } Test_Data; |