mesa: s/src/attribs/ in _mesa_update_client_array()
authorBrian Paul <brianp@vmware.com>
Fri, 26 Jan 2018 18:27:59 +0000 (11:27 -0700)
committerBrian Paul <brianp@vmware.com>
Tue, 30 Jan 2018 16:07:59 +0000 (09:07 -0700)
Reviewed-by: Gert Wollny <gw.fossdev@gmail.com>
src/mesa/main/varray.h

index 93f2f477fafe7d9757909ff44a72c695eae9d0f5..19506bf8f0bd422a677b16b9875e9470976548cf 100644 (file)
@@ -55,19 +55,19 @@ _mesa_vertex_attrib_address(const struct gl_array_attributes *array,
 static inline void
 _mesa_update_client_array(struct gl_context *ctx,
                           struct gl_vertex_array *dst,
-                          const struct gl_array_attributes *src,
+                          const struct gl_array_attributes *attribs,
                           const struct gl_vertex_buffer_binding *binding)
 {
-   dst->Size = src->Size;
-   dst->Type = src->Type;
-   dst->Format = src->Format;
+   dst->Size = attribs->Size;
+   dst->Type = attribs->Type;
+   dst->Format = attribs->Format;
    dst->StrideB = binding->Stride;
-   dst->Ptr = _mesa_vertex_attrib_address(src, binding);
-   dst->Normalized = src->Normalized;
-   dst->Integer = src->Integer;
-   dst->Doubles = src->Doubles;
+   dst->Ptr = _mesa_vertex_attrib_address(attribs, binding);
+   dst->Normalized = attribs->Normalized;
+   dst->Integer = attribs->Integer;
+   dst->Doubles = attribs->Doubles;
    dst->InstanceDivisor = binding->InstanceDivisor;
-   dst->_ElementSize = src->_ElementSize;
+   dst->_ElementSize = attribs->_ElementSize;
    _mesa_reference_buffer_object(ctx, &dst->BufferObj, binding->BufferObj);
 }