diff options
author | Chia-I Wu <[email protected]> | 2009-07-16 21:21:57 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-07-17 11:54:06 -0600 |
commit | 3f7e0d5302ed0fadd794a41af6e476d2c408adc7 (patch) | |
tree | 4359eb96a321daf1df24d614784f6771a880b654 /src/egl/main/egldriver.c | |
parent | be9d1ab171b1b29108c781af84dd500707a12925 (diff) |
egl: Destroy display's resources upon termination.
eglTerminate should destroy the contexts and surfaces of the display.
Signed-off-by: Chia-I Wu <[email protected]>
Diffstat (limited to 'src/egl/main/egldriver.c')
-rw-r--r-- | src/egl/main/egldriver.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/egl/main/egldriver.c b/src/egl/main/egldriver.c index 43b1f519034..f2a864cd8a7 100644 --- a/src/egl/main/egldriver.c +++ b/src/egl/main/egldriver.c @@ -284,9 +284,7 @@ _eglCloseDriver(_EGLDriver *drv, EGLDisplay dpy) _eglLog(_EGL_DEBUG, "Closing %s", drv->Name); - /* - * XXX check for currently bound context/surfaces and delete them? - */ + _eglReleaseDisplayResources(drv, dpy); b = drv->API.Terminate(drv, dpy); |