You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The PhysicalDeviceMemoryProperties struct has functions which allow the developer to get a slice of size VK_MAX_MEMORY_TYPES. The entries up to memory_type_count are valid, the ones after are invalid.
The Voodoo API should have only one function, memory_types, and it should return a slice of the correct size: &memory_types[..memory_type_count].
The text was updated successfully, but these errors were encountered:
The
PhysicalDeviceMemoryProperties
struct has functions which allow the developer to get a slice of sizeVK_MAX_MEMORY_TYPES
. The entries up tomemory_type_count
are valid, the ones after are invalid.The Voodoo API should have only one function,
memory_types
, and it should return a slice of the correct size:&memory_types[..memory_type_count]
.The text was updated successfully, but these errors were encountered: