diff options
author | Dave Airlie <airlied@redhat.com> | 2015-03-20 17:13:03 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2015-03-21 08:14:33 +1000 |
commit | 727eb4c4e7edc3eeb8126000379d9e2bab985773 (patch) | |
tree | 695814fe87cbcd88b40558d999d45d084e60359a /src/mesa | |
parent | 974e4783a5c7ee9d378124f6dcfc6a0ffd9727db (diff) | |
download | external_mesa3d-727eb4c4e7edc3eeb8126000379d9e2bab985773.zip external_mesa3d-727eb4c4e7edc3eeb8126000379d9e2bab985773.tar.gz external_mesa3d-727eb4c4e7edc3eeb8126000379d9e2bab985773.tar.bz2 |
mesa: fix hole in vertex_array_object
this just removes 4 bytes from this object.
Acked-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Alex Deucher alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/mtypes.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 587507b..68a5d5c 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -1605,9 +1605,11 @@ struct gl_vertex_array_object { /** Name of the VAO as received from glGenVertexArray. */ GLuint Name; - GLchar *Label; /**< GL_KHR_debug */ GLint RefCount; + + GLchar *Label; /**< GL_KHR_debug */ + mtx_t Mutex; /** |