mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-20 01:48:58 +02:00
[vk, qcom] Binding buffer limits
This commit is contained in:
parent
79ca29d468
commit
3619fe7e99
5 changed files with 82 additions and 0 deletions
|
|
@ -326,6 +326,16 @@ public:
|
|||
return properties.properties.limits.maxComputeSharedMemorySize;
|
||||
}
|
||||
|
||||
/// Returns the maximum number of dynamic storage buffer descriptors per set.
|
||||
u32 GetMaxDescriptorSetStorageBuffersDynamic() const {
|
||||
return properties.properties.limits.maxDescriptorSetStorageBuffersDynamic;
|
||||
}
|
||||
|
||||
/// Returns the maximum number of dynamic uniform buffer descriptors per set.
|
||||
u32 GetMaxDescriptorSetUniformBuffersDynamic() const {
|
||||
return properties.properties.limits.maxDescriptorSetUniformBuffersDynamic;
|
||||
}
|
||||
|
||||
/// Returns float control properties of the device.
|
||||
const VkPhysicalDeviceFloatControlsPropertiesKHR& FloatControlProperties() const {
|
||||
return properties.float_controls;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue