summaryrefslogtreecommitdiffstats
path: root/src/egl/main/eglapi.h
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2016-03-03 15:59:48 +0100
committerMarek Olšák <[email protected]>2016-04-20 12:18:47 +0200
commitb6eda708431b91a3b568da0efac845c08cb36796 (patch)
tree4d80c1559be8195b4f2cbd5b0b3cf1bc7414fc29 /src/egl/main/eglapi.h
parent5e9ed261ed8ec211ba9bf5aa58d50078304583ff (diff)
egl: implement EGL part of interop interface (v2)
v2: - use const
Diffstat (limited to 'src/egl/main/eglapi.h')
-rw-r--r--src/egl/main/eglapi.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/egl/main/eglapi.h b/src/egl/main/eglapi.h
index 3f6d3c27a52..58327fd1015 100644
--- a/src/egl/main/eglapi.h
+++ b/src/egl/main/eglapi.h
@@ -42,6 +42,9 @@ extern "C" {
typedef void (*_EGLProc)(void);
struct wl_display;
+typedef struct _mesa_glinterop_device_info mesa_glinterop_device_info;
+typedef struct _mesa_glinterop_export_in mesa_glinterop_export_in;
+typedef struct _mesa_glinterop_export_out mesa_glinterop_export_out;
/**
* The API dispatcher jumps through these functions
@@ -188,6 +191,12 @@ struct _egl_api
EGLBoolean (*ExportDMABUFImageMESA)(_EGLDriver *drv, _EGLDisplay *disp,
_EGLImage *img, EGLint *fds,
EGLint *strides, EGLint *offsets);
+
+ int (*GLInteropQueryDeviceInfo)(_EGLDisplay *dpy, _EGLContext *ctx,
+ mesa_glinterop_device_info *out);
+ int (*GLInteropExportObject)(_EGLDisplay *dpy, _EGLContext *ctx,
+ const mesa_glinterop_export_in *in,
+ mesa_glinterop_export_out *out);
};