# HG changeset patch # User syrjala # Date 1221511404 0 # Node ID 6398d845ae76c8c95871f9b9a3f86eeffe593871 # Parent 5ab1614e3f0a6fbd6a1dfeebc4dc29cb29f650ea Don't limit BES to non-synced single buffering when CRTC2 is used. diff -r 5ab1614e3f0a -r 6398d845ae76 libvo/vo_dfbmga.c --- a/libvo/vo_dfbmga.c Mon Sep 15 20:41:08 2008 +0000 +++ b/libvo/vo_dfbmga.c Mon Sep 15 20:43:24 2008 +0000 @@ -666,10 +666,6 @@ 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 @@ if (use_bes) { #if DIRECTFBVERSION > DFB_VERSION(0,9,15) - if (vo_vsync && !flipping && !use_crtc2) + if (vo_vsync && !flipping) bes->WaitForSync( bes ); #endif