diff options
author | Mathias Fröhlich <[email protected]> | 2016-06-17 08:09:05 +0200 |
---|---|---|
committer | Mathias Fröhlich <[email protected]> | 2016-07-31 10:05:46 +0200 |
commit | 56c65cd31538bd78b3ad9e516ddcb73438c535c9 (patch) | |
tree | 32da7b639e6ca6d963ce63ca3167ff35213a0f57 /src/mesa/main/varray.c | |
parent | 43a6f435caf011cc6fd193671ad8eec37dbcb016 (diff) |
mesa: Remove set but not used gl_client_array::Enabled.
The way it is used today does not care about the
Enabled flag anymore.
Signed-off-by: Mathias Fröhlich <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/varray.c')
-rw-r--r-- | src/mesa/main/varray.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/main/varray.c b/src/mesa/main/varray.c index 36aa33c881f..113758467c0 100644 --- a/src/mesa/main/varray.c +++ b/src/mesa/main/varray.c @@ -2318,7 +2318,6 @@ _mesa_copy_client_array(struct gl_context *ctx, dst->Stride = src->Stride; dst->StrideB = src->StrideB; dst->Ptr = src->Ptr; - dst->Enabled = src->Enabled; dst->Normalized = src->Normalized; dst->Integer = src->Integer; dst->Doubles = src->Doubles; |