summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/varray.h
diff options
context:
space:
mode:
authorMathias Fröhlich <[email protected]>2016-06-17 08:09:05 +0200
committerMathias Fröhlich <[email protected]>2016-07-31 10:05:46 +0200
commit56c65cd31538bd78b3ad9e516ddcb73438c535c9 (patch)
tree32da7b639e6ca6d963ce63ca3167ff35213a0f57 /src/mesa/main/varray.h
parent43a6f435caf011cc6fd193671ad8eec37dbcb016 (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.h')
-rw-r--r--src/mesa/main/varray.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/main/varray.h b/src/mesa/main/varray.h
index a766afad5bc..3c5d01e27eb 100644
--- a/src/mesa/main/varray.h
+++ b/src/mesa/main/varray.h
@@ -65,7 +65,6 @@ _mesa_update_client_array(struct gl_context *ctx,
dst->Stride = src->Stride;
dst->StrideB = binding->Stride;
dst->Ptr = _mesa_vertex_attrib_address(src, binding);
- dst->Enabled = src->Enabled;
dst->Normalized = src->Normalized;
dst->Integer = src->Integer;
dst->Doubles = src->Doubles;