summaryrefslogtreecommitdiff
path: root/src/egl/main/eglmisc.c
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2009-09-28 14:12:39 +0800
committerBrian Paul <brianp@vmware.com>2009-10-15 12:54:00 -0600
commit6c21c8862bc6edc9cddf3b6eb6f276961099a7a8 (patch)
tree2a4ead835862bdb82e0894259dff143ae4849975 /src/egl/main/eglmisc.c
parent57da499d7ba074128e8c97b8076805e403a2b9c4 (diff)
egl: Rework the synchronization primitives.
This adds error checking to the synchronization primitives. And eglWaitGL is now implemented by eglWaitClient. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
Diffstat (limited to 'src/egl/main/eglmisc.c')
-rw-r--r--src/egl/main/eglmisc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/egl/main/eglmisc.c b/src/egl/main/eglmisc.c
index b37213faf1..e66913320b 100644
--- a/src/egl/main/eglmisc.c
+++ b/src/egl/main/eglmisc.c
@@ -108,11 +108,12 @@ _eglQueryString(_EGLDriver *drv, _EGLDisplay *dpy, EGLint name)
EGLBoolean
-_eglWaitGL(_EGLDriver *drv, _EGLDisplay *dpy)
+_eglWaitClient(_EGLDriver *drv, _EGLDisplay *dpy, _EGLContext *ctx)
{
/* just a placeholder */
(void) drv;
(void) dpy;
+ (void) ctx;
return EGL_TRUE;
}