diff options
author | Tapani Pälli <[email protected]> | 2017-12-28 10:51:11 +0200 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2018-02-07 14:45:34 +0200 |
commit | 6f5b57093b3462a54e9c7c6188db37e46993cee7 (patch) | |
tree | b6a4f043b29a47dfbdf5a8c2e143843fe1c85369 /src/egl/main/eglapi.h | |
parent | cf4569da6be22bdf4f2414914a17732d730d4b93 (diff) |
egl: add support for EGL_ANDROID_blob_cache
v2: cleanup, move callbacks to _egl_display struct (Emil Velikov)
adapt to earlier ctx->screen changes
v3: remove useless checking, add _eglSetFuncName (Emil Velikov)
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Jordan Justen <[email protected]> (v2)
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/egl/main/eglapi.h')
-rw-r--r-- | src/egl/main/eglapi.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/egl/main/eglapi.h b/src/egl/main/eglapi.h index 852a34584ea..3f70377cd74 100644 --- a/src/egl/main/eglapi.h +++ b/src/egl/main/eglapi.h @@ -209,6 +209,10 @@ struct _egl_api EGLuint64KHR *modifiers, EGLBoolean *external_only, EGLint *num_modifiers); + + void (*SetBlobCacheFuncsANDROID) (_EGLDriver *drv, _EGLDisplay *dpy, + EGLSetBlobFuncANDROID set, + EGLGetBlobFuncANDROID get); }; #ifdef __cplusplus |