Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
inactive123 committed Mar 1, 2018
1 parent 13b6a01 commit 9d45d26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion gfx/drivers_context/sdl_gl_ctx.c
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,6 @@ static void sdl_ctx_swap_buffers(void *data, void *data2)
#else
SDL_GL_SwapBuffers();
#endif
(void)data;
}

static void sdl_ctx_input_driver(void *data,
Expand Down
3 changes: 2 additions & 1 deletion gfx/drivers_context/vc_egl_ctx.c
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,8 @@ static void gfx_ctx_vc_swap_buffers(void *data, void *data2)

egl_swap_buffers(&vc->egl);

/* Wait for vsync immediately if we don't want egl_swap_buffers to triple-buffer */
/* Wait for vsync immediately if we don't
* want egl_swap_buffers to triple-buffer */
if (video_info->max_swapchain_images <= 2)
{
/* We DON'T wait to wait without callback function ready! */
Expand Down

0 comments on commit 9d45d26

Please sign in to comment.