hk: Bump up max buffer size

Signed-off-by: Asahi Lina <lina@asahilina.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32081>
This commit is contained in:
Asahi Lina
2024-10-04 01:49:19 +09:00
committed by Marge Bot
parent 81546c769e
commit 252e9a4cdf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -757,7 +757,7 @@ hk_get_device_properties(const struct agx_device *dev,
.maxMultiviewViewCount = HK_MAX_MULTIVIEW_VIEW_COUNT,
.maxMultiviewInstanceIndex = UINT32_MAX,
.maxPerSetDescriptors = UINT32_MAX,
.maxMemoryAllocationSize = (1u << 31),
.maxMemoryAllocationSize = (1ull << 37),
/* Vulkan 1.2 properties */
.supportedDepthResolveModes =
+1 -1
View File
@@ -30,7 +30,7 @@
#define HK_MAX_MULTIVIEW_VIEW_COUNT 32
#define HK_SPARSE_ADDR_SPACE_SIZE (1ull << 39)
#define HK_MAX_BUFFER_SIZE (1ull << 31)
#define HK_MAX_BUFFER_SIZE (1ull << 37)
#define HK_MAX_SHARED_SIZE (32 * 1024)
struct hk_addr_range {