[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
- Previous message: [MPlayer-cvslog] CVS: main/libvo gl_common.c, 1.10, 1.11 gl_common.h, 1.8, 1.9 vo_gl.c, 1.79, 1.80 vo_gl2.c, 1.67, 1.68
- Next message: [MPlayer-cvslog] CVS: main/libvo gl_common.c, 1.11, 1.12 vo_gl.c, 1.80, 1.81 vo_gl2.c, 1.69, 1.70
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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;
- Previous message: [MPlayer-cvslog] CVS: main/libvo gl_common.c, 1.10, 1.11 gl_common.h, 1.8, 1.9 vo_gl.c, 1.79, 1.80 vo_gl2.c, 1.67, 1.68
- Next message: [MPlayer-cvslog] CVS: main/libvo gl_common.c, 1.11, 1.12 vo_gl.c, 1.80, 1.81 vo_gl2.c, 1.69, 1.70
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list