typedef struct _mesa_glinterop_device_info {
/* The caller should set this to the version of the struct they support */
/* NOTE: Do not use the MESA_GLINTEROP_DEVICE_INFO_VERSION macro */
- uint32_t struct_version;
+ uint32_t version;
/* PCI location */
uint32_t pci_segment_group;
typedef struct _mesa_glinterop_export_in {
/* The caller should set this to the version of the struct they support */
/* NOTE: Do not use the MESA_GLINTEROP_EXPORT_IN_VERSION macro */
- uint32_t struct_version;
+ uint32_t version;
/* One of the following:
* - GL_TEXTURE_BUFFER
typedef struct _mesa_glinterop_export_out {
/* The caller should set this to the version of the struct they support */
/* NOTE: Do not use the MESA_GLINTEROP_EXPORT_OUT_VERSION macro */
- uint32_t struct_version;
+ uint32_t version;
/* The DMABUF handle. It must be closed by the caller using the POSIX
* close() function when it's not needed anymore. Mesa is not responsible
{
struct pipe_screen *screen = dri_context(_ctx)->st->pipe->screen;
- if (!out->struct_version)
+ if (!out->version)
return MESA_GLINTEROP_INVALID_VALUE;
out->pci_segment_group = screen->get_param(screen, PIPE_CAP_PCI_GROUP);
unsigned target, usage;
boolean success;
- if (!in->struct_version || !out->struct_version)
+ if (!in->version || !out->version)
return MESA_GLINTEROP_INVALID_VALUE;
/* Validate the target. */