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 | 64c2593a5c33a98d880d141793360b44d07d1366 (patch) | |
tree | 66604818f5cc60ef2cd1ea4c6c9abb23dc2bdda9 /src/glx/glxcmds.c | |
parent | ee39d4456e7551b257343551d59e7c6a3388fdc0 (diff) |
glx: 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/glx/glxcmds.c')
-rw-r--r-- | src/glx/glxcmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glx/glxcmds.c b/src/glx/glxcmds.c index 6abe0b9f229..8980de3733a 100644 --- a/src/glx/glxcmds.c +++ b/src/glx/glxcmds.c @@ -2713,7 +2713,7 @@ __glXGetUST(int64_t * ust) #if defined(GLX_DIRECT_RENDERING) && !defined(GLX_USE_APPLEGL) -int +PUBLIC int MesaGLInteropGLXQueryDeviceInfo(Display *dpy, GLXContext context, struct mesa_glinterop_device_info *out) { @@ -2737,7 +2737,7 @@ MesaGLInteropGLXQueryDeviceInfo(Display *dpy, GLXContext context, return ret; } -int +PUBLIC int MesaGLInteropGLXExportObject(Display *dpy, GLXContext context, struct mesa_glinterop_export_in *in, struct mesa_glinterop_export_out *out) |