diff options
author | Brian Paul <[email protected]> | 2016-10-06 17:30:20 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2016-10-13 17:38:49 -0600 |
commit | 15fb88e912531110f1a31ede2100910fdda2823e (patch) | |
tree | c33ac86532e98ad20842d4922e5d3e28bbb0ff0e /src/mesa/main/get.c | |
parent | c89802aeeaee35e06c98a41dd630a60e8e7e4123 (diff) |
mesa: rename gl_vertex_attrib_array gl_array_attributes
The structure contains the attributes of a vertex array. The old name
was kind of confusing.
Reviewed-by: Mathias Fröhlich <[email protected]>
Diffstat (limited to 'src/mesa/main/get.c')
-rw-r--r-- | src/mesa/main/get.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index c11bcde207a..6234f6ed6b7 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -607,7 +607,7 @@ static void find_custom_value(struct gl_context *ctx, const struct value_desc *d, union value *v) { struct gl_buffer_object **buffer_obj; - struct gl_vertex_attrib_array *array; + struct gl_array_attributes *array; GLuint unit, *p; switch (d->pname) { |