diff options
author | Emil Velikov <[email protected]> | 2015-06-11 13:08:00 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-06-12 15:17:53 +0100 |
commit | 0e55db3b8a9a360511d8679953b8e4b890d66ed7 (patch) | |
tree | a984394cc3604813ed90c62c0052cd51c795a3c4 /src/egl | |
parent | b0f33e9736116a1a6a7bd8bade51d473d7373daa (diff) |
egl/haiku: coding style fixes
Cc: Alexander von Gluck IV <[email protected]>
Acked-by: Brian Paul <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/drivers/haiku/egl_haiku.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/egl/drivers/haiku/egl_haiku.cpp b/src/egl/drivers/haiku/egl_haiku.cpp index da72895ac04..3d00e47c8e6 100644 --- a/src/egl/drivers/haiku/egl_haiku.cpp +++ b/src/egl/drivers/haiku/egl_haiku.cpp @@ -284,10 +284,10 @@ haiku_make_current(_EGLDriver* drv, _EGLDisplay* dpy, _EGLSurface *dsurf, { CALLED(); - struct haiku_egl_context* cont=haiku_egl_context(ctx); - struct haiku_egl_surface* surf=haiku_egl_surface(dsurf); + struct haiku_egl_context* cont = haiku_egl_context(ctx); + struct haiku_egl_surface* surf = haiku_egl_surface(dsurf); _EGLContext *old_ctx; - _EGLSurface *old_dsurf, *old_rsurf; + _EGLSurface *old_dsurf, *old_rsurf; if (!_eglBindContext(ctx, dsurf, rsurf, &old_ctx, &old_dsurf, &old_rsurf)) return EGL_FALSE; @@ -302,7 +302,8 @@ extern "C" EGLBoolean haiku_swap_buffers(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *surf) { - struct haiku_egl_surface* surface=haiku_egl_surface(surf); + struct haiku_egl_surface* surface = haiku_egl_surface(surf); + surface->gl->SwapBuffers(); //gl->Render(); return EGL_TRUE; |