mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-23 15:24:25 +00:00
Fix texture arrays not working
This commit is contained in:
parent
d291ab8e43
commit
21c6f1f371
@ -254,7 +254,8 @@ impl DescriptorImageDesc {
|
||||
match (my_max, other_max) {
|
||||
(Some(m), Some(o)) => if m < o { return false; },
|
||||
(Some(_), None) => (),
|
||||
(None, _) => return false,
|
||||
(None, Some(_)) => return false,
|
||||
(None, None) => (), // TODO: is this correct?
|
||||
};
|
||||
},
|
||||
_ => return false
|
||||
|
Loading…
Reference in New Issue
Block a user