diff options
author | Chia-I Wu <[email protected]> | 2010-01-23 22:53:59 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-01-24 20:38:15 +0800 |
commit | 5e66d1893234b3002d71985c05253321d4cdedc4 (patch) | |
tree | 771179bf6df9a1e0a3c264020148d85d645fd1b0 /src/egl/main/egldisplay.c | |
parent | 7be4d6b5f7ee8ccf8a5dfc117b348c2a165d4054 (diff) |
egl: Move context functions in egldisplay.[ch] to eglcontext.[ch].
Move functions to where they should be. There should be no real change
here.
Diffstat (limited to 'src/egl/main/egldisplay.c')
-rw-r--r-- | src/egl/main/egldisplay.c | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/src/egl/main/egldisplay.c b/src/egl/main/egldisplay.c index eb82af48842..e14d0c1b63b 100644 --- a/src/egl/main/egldisplay.c +++ b/src/egl/main/egldisplay.c @@ -183,48 +183,6 @@ _eglCleanupDisplay(_EGLDisplay *disp) /** - * Link a context to a display and return the handle of the link. - * The handle can be passed to client directly. - */ -EGLContext -_eglLinkContext(_EGLContext *ctx, _EGLDisplay *dpy) -{ - ctx->Display = dpy; - ctx->Next = dpy->ContextList; - dpy->ContextList = ctx; - return (EGLContext) ctx; -} - - -/** - * Unlink a linked context from its display. - * Accessing an unlinked context should generate EGL_BAD_CONTEXT error. - */ -void -_eglUnlinkContext(_EGLContext *ctx) -{ - _EGLContext *prev; - - prev = ctx->Display->ContextList; - if (prev != ctx) { - while (prev) { - if (prev->Next == ctx) - break; - prev = prev->Next; - } - assert(prev); - prev->Next = ctx->Next; - } - else { - ctx->Display->ContextList = ctx->Next; - } - - ctx->Next = NULL; - ctx->Display = NULL; -} - - -/** * Link a surface to a display and return the handle of the link. * The handle can be passed to client directly. */ @@ -291,27 +249,6 @@ _eglCheckDisplayHandle(EGLDisplay dpy) /** - * Return EGL_TRUE if the given handle is a valid handle to a context. - */ -EGLBoolean -_eglCheckContextHandle(EGLContext ctx, _EGLDisplay *dpy) -{ - _EGLContext *cur = NULL; - - if (dpy) - cur = dpy->ContextList; - while (cur) { - if (cur == (_EGLContext *) ctx) { - assert(cur->Display == dpy); - break; - } - cur = cur->Next; - } - return (cur != NULL); -} - - -/** * Return EGL_TRUE if the given handle is a valid handle to a surface. */ EGLBoolean |