diff options
author | Dave Airlie <[email protected]> | 2017-09-03 20:35:19 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-09-06 06:12:47 +1000 |
commit | a265ffa69f29935bd47b5e12363896e46205b7c1 (patch) | |
tree | 23551d534e1ee510e9c11d6c8bc67c6adbe99d16 /src/mesa/main | |
parent | e4bcbe03b555e8b3d419d205394a2f2c7675e95b (diff) |
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]>
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/mtypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 7f9c30fc623..a72a3b2ccd5 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) */ |