mesa/mtypes: reduce size of gl_sync_object.
authorDave Airlie <airlied@redhat.com>
Sun, 3 Sep 2017 10:35:19 +0000 (20:35 +1000)
committerDave Airlie <airlied@redhat.com>
Tue, 5 Sep 2017 20:12:47 +0000 (06:12 +1000)
Drops from 40->32 bytes.

Reviewed-by: Thomas Helland <thomashelland90@gmail.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
src/mesa/main/mtypes.h

index 7f9c30fc623d1656132207edf554e4c82c571b34..a72a3b2ccd578071659bcff7969c29301cc5d028 100644 (file)
@@ -3192,8 +3192,8 @@ struct gl_query_state
 struct gl_sync_object
 {
    GLuint Name;               /**< Fence name */
-   GLchar *Label;             /**< GL_KHR_debug */
    GLint RefCount;            /**< Reference count */
+   GLchar *Label;             /**< GL_KHR_debug */
    GLboolean DeletePending;   /**< Object was deleted while there were still
                               * live references (e.g., sync not yet finished)
                               */