diff options
author | Chia-I Wu <[email protected]> | 2009-08-03 11:34:37 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-08-03 11:34:37 -0600 |
commit | 07ee01365a8bddf6f50821ecd585784498a25ff0 (patch) | |
tree | 2d788bcf6cc919b85698080f7e0a8cf447feff59 /src/egl/main/eglsurface.c | |
parent | 27148ccaba9ceee44a3d9fb4649f4a953b3062a7 (diff) |
egl: Replace IsBound by a pointer to the binding.
IsBound tells if a context or surface is current. What it does not tell
is, to which thread a context is current, or to which context a surface
is current. This commit replaces IsBound by a pointer to the binding
thread or context.
Signed-off-by: Chia-I Wu <[email protected]>
Diffstat (limited to 'src/egl/main/eglsurface.c')
-rw-r--r-- | src/egl/main/eglsurface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/main/eglsurface.c b/src/egl/main/eglsurface.c index 9821e636287..bd263fe2650 100644 --- a/src/egl/main/eglsurface.c +++ b/src/egl/main/eglsurface.c @@ -413,7 +413,7 @@ _eglDestroySurface(_EGLDriver *drv, EGLDisplay dpy, EGLSurface surface) _EGLSurface *surf = _eglLookupSurface(surface); if (surf) { _eglUnlinkSurface(surf); - if (!surf->IsBound) + if (!_eglIsSurfaceBound(surf)) free(surf); return EGL_TRUE; } |