mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-05 17:01:11 +00:00
[qfcc] Check for uniform arrays for UniformConstant
Another one bites the dust (still more fragment shader issues, though).
This commit is contained in:
parent
6bf5c047c1
commit
f10abf4a18
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue