mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
mesa: fix indentation in vertex_attrib_binding()
Reviewed-by: Mathias Fröhlich <mathias.froehlich@web.de>
This commit is contained in:
parent
743a526372
commit
3a2869aaca
1 changed files with 2 additions and 2 deletions
|
|
@ -136,9 +136,9 @@ vertex_attrib_binding(struct gl_context *ctx,
|
|||
struct gl_array_attributes *array = &vao->VertexAttrib[attribIndex];
|
||||
|
||||
if (!_mesa_is_bufferobj(vao->VertexBinding[bindingIndex].BufferObj))
|
||||
vao->VertexAttribBufferMask &= ~VERT_BIT(attribIndex);
|
||||
vao->VertexAttribBufferMask &= ~VERT_BIT(attribIndex);
|
||||
else
|
||||
vao->VertexAttribBufferMask |= VERT_BIT(attribIndex);
|
||||
vao->VertexAttribBufferMask |= VERT_BIT(attribIndex);
|
||||
|
||||
if (array->BufferBindingIndex != bindingIndex) {
|
||||
const GLbitfield64 array_bit = VERT_BIT(attribIndex);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue