summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorsyrjala <syrjala@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-08-15 00:27:28 +0000
committersyrjala <syrjala@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-08-15 00:27:28 +0000
commitad1787ad0bd64bed89e05172f35343db1a717b36 (patch)
tree3a4442ed12c48c5687f651823e09d6b8d4e09f58 /libvo
parent5fcaa7d4a17c5b2f1de28ee805d141a2572abd1c (diff)
downloadmpv-ad1787ad0bd64bed89e05172f35343db1a717b36.tar.bz2
mpv-ad1787ad0bd64bed89e05172f35343db1a717b36.tar.xz
Removed useless SetOpacity() calls.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13029 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_dfbmga.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/libvo/vo_dfbmga.c b/libvo/vo_dfbmga.c
index 135294c85e..71d81e6bdd 100644
--- a/libvo/vo_dfbmga.c
+++ b/libvo/vo_dfbmga.c
@@ -465,7 +465,6 @@ preinit( const char *arg )
is_g200 = 1;
use_crtc2 = 0;
}
- bes->SetOpacity( bes, 0 );
}
if (use_crtc2) {
@@ -490,7 +489,6 @@ preinit( const char *arg )
DirectFBErrorString( res ) );
return -1;
}
- crtc2->SetOpacity( crtc2, 0 );
}
if (use_input) {
@@ -775,7 +773,6 @@ config( uint32_t width, uint32_t height,
DirectFBErrorString( res ) );
return -1;
}
- spic->SetOpacity( spic, 0 );
dlc.flags = DLCONF_PIXELFORMAT | DLCONF_BUFFERMODE;
dlc.pixelformat = DSPF_ALUT44;
@@ -839,14 +836,6 @@ config( uint32_t width, uint32_t height,
pixelformat_name( subframe_format ),
use_crtc2 ? (use_spic ? "Sub-picture layer" : "CRTC2") : "BES" );
- /* Display all needed layers */
- if (use_bes)
- bes->SetOpacity( bes, 0xFF );
- if (use_crtc2)
- crtc2->SetOpacity( crtc2, 0xFF );
- if (use_spic)
- spic->SetOpacity( spic, 0xFF );
-
osd_dirty = 0;
osd_current = 1;
blit_done = 0;