Module: Mesa Branch: master Commit: a265ffa69f29935bd47b5e12363896e46205b7c1 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a265ffa69f29935bd47b5e12363896e46205b7c1
Author: Dave Airlie <[email protected]> Date: Sun Sep 3 20:35:19 2017 +1000 mesa/mtypes: reduce size of gl_sync_object. Drops from 40->32 bytes. Reviewed-by: Thomas Helland <[email protected]> Reviewed-by: Marek Olšák <[email protected]> Signed-off-by: Dave Airlie <[email protected]> --- src/mesa/main/mtypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 7f9c30fc62..a72a3b2ccd 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) */ _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
