[MPlayer-cvslog] r19585 - trunk/libvo/vo_gl.c
reimar
subversion at mplayerhq.hu
Mon Aug 28 22:21:04 CEST 2006
Author: reimar
Date: Mon Aug 28 22:21:04 2006
New Revision: 19585
Modified:
trunk/libvo/vo_gl.c
Log:
Cosmetics: fix indentation after last patch
Modified: trunk/libvo/vo_gl.c
==============================================================================
--- trunk/libvo/vo_gl.c (original)
+++ trunk/libvo/vo_gl.c Mon Aug 28 22:21:04 2006
@@ -606,16 +606,16 @@
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glCallList(eosdDispList);
}
- if (osdtexCnt > 0) {
- glColor4ub((osd_color >> 16) & 0xff, (osd_color >> 8) & 0xff, osd_color & 0xff, 0xff);
- // draw OSD
+ if (osdtexCnt > 0) {
+ glColor4ub((osd_color >> 16) & 0xff, (osd_color >> 8) & 0xff, osd_color & 0xff, 0xff);
+ // draw OSD
#ifndef FAST_OSD
- glBlendFunc(GL_ZERO, GL_SRC_ALPHA);
- glCallLists(osdtexCnt, GL_UNSIGNED_INT, osdaDispList);
+ glBlendFunc(GL_ZERO, GL_SRC_ALPHA);
+ glCallLists(osdtexCnt, GL_UNSIGNED_INT, osdaDispList);
#endif
- glBlendFunc(GL_ONE, GL_ONE);
- glCallLists(osdtexCnt, GL_UNSIGNED_INT, osdDispList);
- }
+ glBlendFunc(GL_ONE, GL_ONE);
+ glCallLists(osdtexCnt, GL_UNSIGNED_INT, osdDispList);
+ }
// set rendering parameters back to defaults
glDisable (GL_BLEND);
if (!scaled_osd)
More information about the MPlayer-cvslog
mailing list