[MPlayer-cvslog] CVS: main/libvo vo_gl2.c,1.68,1.69

Reimar Döffinger CVS syncmail at mplayerhq.hu
Sun Aug 14 20:36:04 CEST 2005


CVS change done by Reimar Döffinger CVS

Update of /cvsroot/mplayer/main/libvo
In directory mail:/var2/tmp/cvs-serv29856

Modified Files:
	vo_gl2.c 
Log Message:
10l, texture_width/height initialization was removed, so use
image_width/height here


Index: vo_gl2.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_gl2.c,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- vo_gl2.c	14 Aug 2005 13:44:14 -0000	1.68
+++ vo_gl2.c	14 Aug 2005 18:36:01 -0000	1.69
@@ -157,12 +157,12 @@
 
   /* achieve the 2**e_x:=texture_width, 2**e_y:=texture_height */
   s=1;
-  while (s<texture_width)
+  while (s<image_width)
     s*=2;
   texture_width=s;
 
   s=1;
-  while (s<texture_height)
+  while (s<image_height)
     s*=2;
   texture_height=s;
 




More information about the MPlayer-cvslog mailing list