mesa: remove remaining tabs in prog_parameter.c

Acked-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Timothy Arceri 2016-03-18 12:33:27 +11:00
parent ce9c042ab3
commit 952c166170
1 changed files with 8 additions and 8 deletions

View File

@ -147,17 +147,17 @@ _mesa_new_parameter_list_sized(unsigned size)
/* alloc arrays */ /* alloc arrays */
p->Parameters = (struct gl_program_parameter *) p->Parameters = (struct gl_program_parameter *)
calloc(size, sizeof(struct gl_program_parameter)); calloc(size, sizeof(struct gl_program_parameter));
p->ParameterValues = (gl_constant_value (*)[4]) p->ParameterValues = (gl_constant_value (*)[4])
_mesa_align_malloc(size * 4 *sizeof(gl_constant_value), 16); _mesa_align_malloc(size * 4 *sizeof(gl_constant_value), 16);
if ((p->Parameters == NULL) || (p->ParameterValues == NULL)) { if ((p->Parameters == NULL) || (p->ParameterValues == NULL)) {
free(p->Parameters); free(p->Parameters);
_mesa_align_free(p->ParameterValues); _mesa_align_free(p->ParameterValues);
free(p); free(p);
p = NULL; p = NULL;
} }
} }
@ -284,7 +284,7 @@ _mesa_add_parameter(struct gl_program_parameter_list *paramList,
else { else {
/* silence valgrind */ /* silence valgrind */
for (j = 0; j < 4; j++) for (j = 0; j < 4; j++)
paramList->ParameterValues[oldNum + i][j].f = 0; paramList->ParameterValues[oldNum + i][j].f = 0;
} }
size -= 4; size -= 4;
} }
@ -377,8 +377,8 @@ _mesa_add_state_reference(struct gl_program_parameter_list *paramList,
/* Check if the state reference is already in the list */ /* Check if the state reference is already in the list */
for (index = 0; index < (GLint) paramList->NumParameters; index++) { for (index = 0; index < (GLint) paramList->NumParameters; index++) {
if (!memcmp(paramList->Parameters[index].StateIndexes, if (!memcmp(paramList->Parameters[index].StateIndexes,
stateTokens, STATE_LENGTH * sizeof(gl_state_index))) { stateTokens, STATE_LENGTH * sizeof(gl_state_index))) {
return index; return index;
} }
} }