From fc434622b382e25b7457e67a93435861d72699e8 Mon Sep 17 00:00:00 2001 From: Claudio Ciccani Date: Sun, 30 Jul 2006 14:47:51 +0000 Subject: Clear window's event mask before enabling handled events. --- src/glut/directfb/window.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/glut') diff --git a/src/glut/directfb/window.c b/src/glut/directfb/window.c index 7907c45e67..c8174d795e 100644 --- a/src/glut/directfb/window.c +++ b/src/glut/directfb/window.c @@ -155,6 +155,7 @@ __glutCreateWindow( GLboolean fullscreen ) new->window->AttachEventBuffer( new->window, events ); /* enable only handled events */ + new->window->DisableEvents( new->window, DWET_ALL ); new->window->EnableEvents( new->window, DWET_KEYDOWN | DWET_KEYUP | DWET_BUTTONDOWN | DWET_BUTTONUP | DWET_ENTER | DWET_LEAVE | @@ -331,7 +332,11 @@ __glutDestroyWindow( __GlutWindow *window ) window->surface->Release( window->surface ); if (window->window) { +#if DIRECTFB_VERSION_CODE >= VERSION_CODE(0,9,26) + window->window->DetachEventBuffer( window->window, events ); +#else window->window->Destroy( window->window ); +#endif window->window->Release( window->window ); } else { -- cgit v1.2.3