diff options
author | Marek Olšák <[email protected]> | 2016-11-02 18:59:22 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2016-11-04 11:30:47 +0100 |
commit | ee39d4456e7551b257343551d59e7c6a3388fdc0 (patch) | |
tree | 3f4a1a03b16d79b6cdc12d6e227154a7798a8f3c /src/egl | |
parent | bf51b45313c7cc5ca792401f0cc29574aa9122cf (diff) |
egl: make interop ABI visible again
This was broken when the GLAPI use was removed from mesa_glinterop.h.
Cc: 12.0 13.0 <[email protected]>
Acked-by: Alex Deucher <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/main/eglapi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/egl/main/eglapi.c b/src/egl/main/eglapi.c index 04cac038bca..53340bf7cf9 100644 --- a/src/egl/main/eglapi.c +++ b/src/egl/main/eglapi.c @@ -2391,7 +2391,7 @@ _eglLockDisplayInterop(EGLDisplay dpy, EGLContext context, return MESA_GLINTEROP_SUCCESS; } -int +PUBLIC int MesaGLInteropEGLQueryDeviceInfo(EGLDisplay dpy, EGLContext context, struct mesa_glinterop_device_info *out) { @@ -2413,7 +2413,7 @@ MesaGLInteropEGLQueryDeviceInfo(EGLDisplay dpy, EGLContext context, return ret; } -int +PUBLIC int MesaGLInteropEGLExportObject(EGLDisplay dpy, EGLContext context, struct mesa_glinterop_export_in *in, struct mesa_glinterop_export_out *out) |