summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-28 20:21:04 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-08-28 20:21:04 +0000
commit6fd61e1c4c830d03ee2224db9d6c28bd456ecbd6 (patch)
tree1c14a88a56a300e2520f8856632ddec944e1bfe9 /libvo
parentc92e065c1e503704c317cf7feec3f27bb9c79777 (diff)
downloadmpv-6fd61e1c4c830d03ee2224db9d6c28bd456ecbd6.tar.bz2
mpv-6fd61e1c4c830d03ee2224db9d6c28bd456ecbd6.tar.xz
Cosmetics: fix indentation after last patch
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19585 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_gl.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libvo/vo_gl.c b/libvo/vo_gl.c
index 3d7abc4d82..fa544b8169 100644
--- a/libvo/vo_gl.c
+++ b/libvo/vo_gl.c
@@ -606,16 +606,16 @@ flip_page(void)
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)