egl: _eglCloseDriver should be no-op.

Move drv->API.Terminate call to eglTerminate.  Remove
_eglReleaseDisplayResource as drivers are doing it.

Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
This commit is contained in:
Chia-I Wu
2009-08-13 13:39:51 +08:00
committed by Brian Paul
parent 5a2c9372a0
commit ccc2b0bc65
3 changed files with 7 additions and 8 deletions

View File

@@ -359,8 +359,6 @@ _eglOpenDriver(_EGLDisplay *dpy)
EGLBoolean
_eglCloseDriver(_EGLDriver *drv, _EGLDisplay *dpy)
{
_eglReleaseDisplayResources(drv, dpy);
drv->API.Terminate(drv, dpy);
return EGL_TRUE;
}