changeset 35095:dfa2e1b78664

Remove duplicate redraw call, resize already calls it.
author reimar
date Thu, 13 Sep 2012 21:52:33 +0000
parents 967b0f13715c
children d1651b078aa7
files libvo/vo_gl.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/vo_gl.c	Thu Sep 13 21:46:59 2012 +0000
+++ b/libvo/vo_gl.c	Thu Sep 13 21:52:33 2012 +0000
@@ -692,8 +692,8 @@
 #ifdef CONFIG_GL_OSX
 static void osx_redraw(void)
 {
+  // resize will call redraw to refresh the screen
   resize(vo_dwidth, vo_dheight);
-  redraw();
 }
 #endif