From: Dave Airlie Date: Sun, 3 Sep 2017 10:35:19 +0000 (+1000) Subject: mesa/mtypes: reduce size of gl_sync_object. X-Git-Tag: upstream/18.1.0~6269 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a265ffa69f29935bd47b5e12363896e46205b7c1;p=platform%2Fupstream%2Fmesa.git mesa/mtypes: reduce size of gl_sync_object. Drops from 40->32 bytes. Reviewed-by: Thomas Helland Reviewed-by: Marek Olšák Signed-off-by: Dave Airlie --- diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 7f9c30f..a72a3b2 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -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) */