diff options
author | Marek Olšák <[email protected]> | 2015-04-10 13:16:30 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-04-30 14:38:38 +0200 |
commit | 290a3eb7507f7f2949753a77c425ed2bb6fd0dd1 (patch) | |
tree | 3fba0561b8e7fd13910930c0ac326a8bb63d3bea /src/egl/main/eglsync.h | |
parent | a8617cc0428dcc8340cb85776e122c6534a0fa11 (diff) |
egl/dri2: implement EGL_KHR_cl_event2 (v2)
v2: fix the SYNC_CONDITION query
Diffstat (limited to 'src/egl/main/eglsync.h')
-rw-r--r-- | src/egl/main/eglsync.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/egl/main/eglsync.h b/src/egl/main/eglsync.h index c6cf8c6479e..1d2eb11a7a0 100644 --- a/src/egl/main/eglsync.h +++ b/src/egl/main/eglsync.h @@ -47,12 +47,13 @@ struct _egl_sync EGLenum Type; EGLenum SyncStatus; EGLenum SyncCondition; + EGLAttribKHR CLEvent; }; extern EGLBoolean _eglInitSync(_EGLSync *sync, _EGLDisplay *dpy, EGLenum type, - const EGLint *attrib_list); + const EGLint *attrib_list, const EGLAttribKHR *attrib_list64); extern EGLBoolean |