diff libvo/vo_gl.c @ 36127:18c289284727

Avoid glColor4f, use glColor4ub instead.
author reimar
date Sat, 04 May 2013 15:20:42 +0000
parents 87653d6a0f47
children e51b909bdd8e
line wrap: on
line diff
--- a/libvo/vo_gl.c	Sat May 04 13:28:14 2013 +0000
+++ b/libvo/vo_gl.c	Sat May 04 15:20:42 2013 +0000
@@ -899,7 +899,7 @@
 }
 
 static void do_render(void) {
-  mpglColor4f(1,1,1,1);
+  mpglColor4ub(255, 255, 255, 255);
   if (is_yuv || is_xyz || custom_prog)
     glEnableYUVConversion(gl_target, yuvconvtype);
   if (stereo_mode) {