From 7c94b443089d174e37085df4f5995031faf1fd35 Mon Sep 17 00:00:00 2001 From: syrjala Date: Mon, 15 Sep 2008 20:43:24 +0000 Subject: [PATCH] Don't limit BES to non-synced single buffering when CRTC2 is used. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27624 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_dfbmga.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/libvo/vo_dfbmga.c b/libvo/vo_dfbmga.c index 8d22123826..1b2e477fe9 100644 --- a/libvo/vo_dfbmga.c +++ b/libvo/vo_dfbmga.c @@ -666,10 +666,6 @@ config( uint32_t width, uint32_t height, dlc.flags = DLCONF_WIDTH | DLCONF_HEIGHT | DLCONF_PIXELFORMAT | DLCONF_BUFFERMODE; dlc.width = besrect.w + besrect.x * 2; dlc.height = besrect.h + besrect.y * 2; - - if (use_crtc2) - dlc.buffermode = DLBM_FRONTONLY; - else dlc.buffermode = buffermode; if ((res = bes->TestConfiguration( bes, &dlc, &failed )) != DFB_OK) { @@ -1173,7 +1169,7 @@ blit_to_screen( void ) if (use_bes) { #if DIRECTFBVERSION > DFB_VERSION(0,9,15) - if (vo_vsync && !flipping && !use_crtc2) + if (vo_vsync && !flipping) bes->WaitForSync( bes ); #endif