[qfcc] Check for uniform arrays for UniformConstant

Another one bites the dust (still more fragment shader issues, though).
This commit is contained in:
Bill Currie 2025-02-05 10:57:28 +09:00
parent 6bf5c047c1
commit f10abf4a18

View file

@ -943,6 +943,9 @@ spirv_storage_class (unsigned storage, const type_t *type)
if (is_reference (type)) {
type = dereference_type (type);
}
if (is_array (type)) {
type = dereference_type (type);
}
if (is_handle (type)) {
sc = SpvStorageClassUniformConstant;
}