diff options
author | Timothy Arceri <[email protected]> | 2017-04-22 17:30:27 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-04-26 10:03:06 +1000 |
commit | 2895d96a057b91214b7fe9919fb665faab59b849 (patch) | |
tree | f248a355e075623f4d93447a42a98b07b217572e /src/mesa/main/arrayobj.c | |
parent | f38845b9cbc892e09086c6d1a0d97eb516f1de83 (diff) |
mesa: tidy up left over APPLE_vertex_array_object semantics
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/mesa/main/arrayobj.c')
-rw-r--r-- | src/mesa/main/arrayobj.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/mesa/main/arrayobj.c b/src/mesa/main/arrayobj.c index c52a07b3062..82c00fbe826 100644 --- a/src/mesa/main/arrayobj.c +++ b/src/mesa/main/arrayobj.c @@ -450,16 +450,7 @@ _mesa_BindVertexArray( GLuint id ) return; } - if (!newObj->EverBound) { - /* The "Interactions with APPLE_vertex_array_object" section of the - * GL_ARB_vertex_array_object spec says: - * - * "The first bind call, either BindVertexArray or - * BindVertexArrayAPPLE, determines the semantic of the object." - */ - newObj->ARBsemantics = GL_TRUE; - newObj->EverBound = GL_TRUE; - } + newObj->EverBound = GL_TRUE; } if (ctx->Array.DrawMethod == DRAW_ARRAYS) { |