v3dv: fix variable type
The heap size is a 64-bit value. Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18483>
This commit is contained in:
committed by
Marge Bot
parent
f27d3a08c6
commit
b5b3a1634f
@@ -1384,7 +1384,7 @@ v3dv_GetPhysicalDeviceProperties(VkPhysicalDevice physicalDevice,
|
||||
STATIC_ASSERT(MAX_STORAGE_BUFFERS >= MAX_DYNAMIC_STORAGE_BUFFERS);
|
||||
|
||||
const uint32_t page_size = 4096;
|
||||
const uint32_t mem_size = compute_heap_size();
|
||||
const uint64_t mem_size = compute_heap_size();
|
||||
|
||||
const uint32_t max_varying_components = 16 * 4;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user