diff options
author | Chia-I Wu <[email protected]> | 2011-11-29 15:19:28 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2011-11-29 17:13:01 +0800 |
commit | 76ba431b97087e2d5ca0351e0d613f0812fd1425 (patch) | |
tree | 42dd10a9e6588c152910c49939201e39e291231b /src/mesa/main/ffvertex_prog.c | |
parent | 762c9766c93697af8d7fbaa729aed118789dbe8e (diff) |
mesa: distinct gl_client_array arrays are gone
Fix build errors since 762c9766c93697af8d7fbaa729aed118789dbe8e.
Acked-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/mesa/main/ffvertex_prog.c')
-rw-r--r-- | src/mesa/main/ffvertex_prog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/ffvertex_prog.c b/src/mesa/main/ffvertex_prog.c index f88110fd5df..19d319a56fe 100644 --- a/src/mesa/main/ffvertex_prog.c +++ b/src/mesa/main/ffvertex_prog.c @@ -230,7 +230,7 @@ static void make_state_key( struct gl_context *ctx, struct state_key *key ) key->point_attenuated = 1; #if FEATURE_point_size_array - if (ctx->Array.ArrayObj->PointSize.Enabled) + if (ctx->Array.ArrayObj->VertexAttrib[VERT_ATTRIB_POINT_SIZE].Enabled) key->point_array = 1; #endif |