mesa: array size fix in _slang_typeof_operation()

This commit is contained in:
Brian Paul
2008-12-12 13:18:30 -07:00
parent 8571401d7d
commit 87a00959ba
+9 -1
View File
@@ -600,7 +600,15 @@ _slang_typeof_operation(slang_operation * op,
return GL_FALSE;
}
ti->can_be_referenced = GL_TRUE;
ti->array_len = var->array_len;
if (var->type.specifier.type == SLANG_SPEC_ARRAY &&
var->type.array_len >= 1) {
/* the datatype is an array, ex: float[3] x; */
ti->array_len = var->type.array_len;
}
else {
/* the variable is an array, ex: float x[3]; */
ti->array_len = var->array_len;
}
}
break;
case SLANG_OPER_SEQUENCE: