include: Add driver data to v2 of mesa_glinterop_device_info

Reviewed-by: Adam Jackson <ajax@redhat.com>
Acked-by: Karol Herbst <kherbst@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19242>
This commit is contained in:
Jesse Natalie 2022-10-21 15:15:30 -07:00 committed by Marge Bot
parent f35c8b4dbf
commit 6ab615f183
1 changed files with 13 additions and 1 deletions

View File

@ -101,7 +101,7 @@ enum {
MESA_GLINTEROP_ACCESS_WRITE_ONLY
};
#define MESA_GLINTEROP_DEVICE_INFO_VERSION 1
#define MESA_GLINTEROP_DEVICE_INFO_VERSION 2
/**
* Device information returned by Mesa.
@ -127,6 +127,18 @@ struct mesa_glinterop_device_info {
uint32_t device_id;
/* Structure version 1 ends here. */
/* Size of memory pointed to by out_driver_data. */
uint32_t driver_data_size;
/* If the caller wants to query driver-specific data about the OpenGL
* object, this should point to the memory where that data will be stored.
* This is expected to be a temporary staging memory. The pointer is not
* allowed to be saved for later use by Mesa.
*/
void *driver_data;
/* Structure version 2 ends here. */
};
#define MESA_GLINTEROP_EXPORT_IN_VERSION 1