From bf49f84dcae1664b9a07470fa6970b62aa76c29a Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 17 Jan 2005 19:38:28 +0000 Subject: [PATCH] Date: Mon, 17 Jan 2005 20:54:50 +0200 From: Ville [snip] Subject: [PATCH] SDL/DirectFB: remove Matrox CRTC2 flicker filter Hi, This patch removes the flicker filter option from the DirectFB backend's Matrox CRTC2 code in SDL. I will be removing the option from DirectFB (because it doesn't actually work) and that would cause the SDL code to fail without this fix. I was going to send this to some SDL list directly but libsdl.org is down so I'm not sure what if any lists there are. Thomas Jarosch (the guy who wrote the code) said you would accept SDL patches. Let me know if I should send this somewhere else. -- Ville Syrj?l? syrjala _at sci.fi http://www.sci.fi/~syrjala/ --- src/video/directfb/SDL_DirectFB_video.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/video/directfb/SDL_DirectFB_video.c b/src/video/directfb/SDL_DirectFB_video.c index 3028d2afe..7ed2b8be6 100644 --- a/src/video/directfb/SDL_DirectFB_video.c +++ b/src/video/directfb/SDL_DirectFB_video.c @@ -495,9 +495,8 @@ int DirectFB_VideoInit(_THIS, SDL_PixelFormat *vformat) HIDDEN->c2layer->SetOpacity(HIDDEN->c2layer, 0x0); /* Init the surface here as it got a fixed size */ - dlc.flags = DLCONF_PIXELFORMAT | DLCONF_BUFFERMODE | DLCONF_OPTIONS; + dlc.flags = DLCONF_PIXELFORMAT | DLCONF_BUFFERMODE; dlc.buffermode = DLBM_BACKVIDEO; - dlc.options = DLOP_FLICKER_FILTERING; dlc.pixelformat = DSPF_RGB32; ret = HIDDEN->c2layer->TestConfiguration( HIDDEN->c2layer, &dlc, &failed );