David Carre to Sam

Hello sam, me again.

I'v fixed another bug in the pandora code, it's on the no-X videodriver, i forgot to add some code to destroy the window so it was impossible to reload SDL inside the same application (eglTerminate).

You'll find the svn diff attached.

See you,
David.
This commit is contained in:
Sam Lantinga 2009-08-11 13:45:01 +00:00
parent 0449f9f82c
commit 91f3686c2e

View File

@ -327,6 +327,8 @@ PND_setwindowgrab(_THIS, SDL_Window * window)
void
PND_destroywindow(_THIS, SDL_Window * window)
{
SDL_VideoData *phdata = (SDL_VideoData *) _this->driverdata;
eglTerminate(phdata->egl_display);
}
/*****************************************************************************/