mesa_glinterop: s/struct_version/version/
authorEmil Velikov <emil.velikov@collabora.com>
Thu, 21 Apr 2016 15:18:39 +0000 (16:18 +0100)
committerEmil Velikov <emil.l.velikov@gmail.com>
Tue, 24 May 2016 22:03:00 +0000 (23:03 +0100)
OCD polish for consistency with other mesa interfaces.

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Tested-by: Tom Stellard <thomas.stellard@amd.com>
include/GL/mesa_glinterop.h
src/gallium/state_trackers/dri/dri2.c

index f637409d25d81d48ac89c5f367430711ed3be902..a187a121242f723e440870129b082e750038371d 100644 (file)
@@ -95,7 +95,7 @@ enum {
 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;
@@ -127,7 +127,7 @@ typedef struct _mesa_glinterop_device_info {
 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
@@ -187,7 +187,7 @@ typedef struct _mesa_glinterop_export_in {
 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
index 7f0db351c878b5e31c0a2778356e49fef4af8376..bcca2f21780c41bcc1ea3efd6c831680f7299a8f 100644 (file)
@@ -1468,7 +1468,7 @@ dri2_interop_query_device_info(__DRIcontext *_ctx,
 {
    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);
@@ -1497,7 +1497,7 @@ dri2_interop_export_object(__DRIcontext *_ctx,
    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. */