diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/GL/internal/dri_interface.h | 12 | ||||
-rw-r--r-- | include/GL/mesa_glinterop.h | 36 |
2 files changed, 24 insertions, 24 deletions
diff --git a/include/GL/internal/dri_interface.h b/include/GL/internal/dri_interface.h index f80233b82b..1c73cce6d9 100644 --- a/include/GL/internal/dri_interface.h +++ b/include/GL/internal/dri_interface.h @@ -401,21 +401,21 @@ struct __DRI2fenceExtensionRec { #define __DRI2_INTEROP "DRI2_Interop" #define __DRI2_INTEROP_VERSION 1 -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; +struct mesa_glinterop_device_info; +struct mesa_glinterop_export_in; +struct mesa_glinterop_export_out; struct __DRI2interopExtensionRec { __DRIextension base; /** Same as MesaGLInterop*QueryDeviceInfo. */ int (*query_device_info)(__DRIcontext *ctx, - mesa_glinterop_device_info *out); + struct mesa_glinterop_device_info *out); /** Same as MesaGLInterop*ExportObject. */ int (*export_object)(__DRIcontext *ctx, - mesa_glinterop_export_in *in, - mesa_glinterop_export_out *out); + struct mesa_glinterop_export_in *in, + struct mesa_glinterop_export_out *out); }; /*@}*/ diff --git a/include/GL/mesa_glinterop.h b/include/GL/mesa_glinterop.h index b805d63d3e..c0c20d6fa6 100644 --- a/include/GL/mesa_glinterop.h +++ b/include/GL/mesa_glinterop.h @@ -92,7 +92,7 @@ enum { /** * Device information returned by Mesa. */ -typedef struct _mesa_glinterop_device_info { +struct mesa_glinterop_device_info { /* The caller should set this to the version of the struct they support */ /* The callee will overwrite it if it supports a lower version. * @@ -113,14 +113,14 @@ typedef struct _mesa_glinterop_device_info { uint32_t device_id; /* Structure version 1 ends here. */ -} mesa_glinterop_device_info; +}; #define MESA_GLINTEROP_EXPORT_IN_VERSION 1 /** * Input parameters to Mesa interop export functions. */ -typedef struct _mesa_glinterop_export_in { +struct mesa_glinterop_export_in { /* The caller should set this to the version of the struct they support */ /* The callee will overwrite it if it supports a lower version. * @@ -178,14 +178,14 @@ typedef struct _mesa_glinterop_export_in { */ void *out_driver_data; /* Structure version 1 ends here. */ -} mesa_glinterop_export_in; +}; #define MESA_GLINTEROP_EXPORT_OUT_VERSION 1 /** * Outputs of Mesa interop export functions. */ -typedef struct _mesa_glinterop_export_out { +struct mesa_glinterop_export_out { /* The caller should set this to the version of the struct they support */ /* The callee will overwrite it if it supports a lower version. * @@ -233,7 +233,7 @@ typedef struct _mesa_glinterop_export_out { /* The number of bytes written to out_driver_data. */ uint32_t out_driver_data_written; /* Structure version 1 ends here. */ -} mesa_glinterop_export_out; +}; /** @@ -247,7 +247,7 @@ typedef struct _mesa_glinterop_export_out { */ int MesaGLInteropGLXQueryDeviceInfo(Display *dpy, GLXContext context, - mesa_glinterop_device_info *out); + struct mesa_glinterop_device_info *out); /** @@ -256,7 +256,7 @@ MesaGLInteropGLXQueryDeviceInfo(Display *dpy, GLXContext context, */ int MesaGLInteropEGLQueryDeviceInfo(EGLDisplay dpy, EGLContext context, - mesa_glinterop_device_info *out); + struct mesa_glinterop_device_info *out); /** @@ -272,8 +272,8 @@ MesaGLInteropEGLQueryDeviceInfo(EGLDisplay dpy, EGLContext context, */ int MesaGLInteropGLXExportObject(Display *dpy, GLXContext context, - mesa_glinterop_export_in *in, - mesa_glinterop_export_out *out); + struct mesa_glinterop_export_in *in, + struct mesa_glinterop_export_out *out); /** @@ -282,20 +282,20 @@ MesaGLInteropGLXExportObject(Display *dpy, GLXContext context, */ int MesaGLInteropEGLExportObject(EGLDisplay dpy, EGLContext context, - mesa_glinterop_export_in *in, - mesa_glinterop_export_out *out); + struct mesa_glinterop_export_in *in, + struct mesa_glinterop_export_out *out); typedef int (PFNMESAGLINTEROPGLXQUERYDEVICEINFOPROC)(Display *dpy, GLXContext context, - mesa_glinterop_device_info *out); + struct mesa_glinterop_device_info *out); typedef int (PFNMESAGLINTEROPEGLQUERYDEVICEINFOPROC)(EGLDisplay dpy, EGLContext context, - mesa_glinterop_device_info *out); + struct mesa_glinterop_device_info *out); typedef int (PFNMESAGLINTEROPGLXEXPORTOBJECTPROC)(Display *dpy, GLXContext context, - mesa_glinterop_export_in *in, - mesa_glinterop_export_out *out); + struct mesa_glinterop_export_in *in, + struct mesa_glinterop_export_out *out); typedef int (PFNMESAGLINTEROPEGLEXPORTOBJECTPROC)(EGLDisplay dpy, EGLContext context, - mesa_glinterop_export_in *in, - mesa_glinterop_export_out *out); + struct mesa_glinterop_export_in *in, + struct mesa_glinterop_export_out *out); #ifdef __cplusplus } |