From 8ed34cbfeb62003a25426f1dde57a25977cb1d44 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 17 May 2023 07:33:38 -0400 Subject: [PATCH] lavapipe: bump memory allocation heap to 3GiB this should still be a safe limit on all systems and archs Reviewed-by: Dave Airlie Part-of: --- src/gallium/frontends/lavapipe/lvp_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/frontends/lavapipe/lvp_device.c b/src/gallium/frontends/lavapipe/lvp_device.c index 215ac5ed5c6..f3aafe9ef1e 100644 --- a/src/gallium/frontends/lavapipe/lvp_device.c +++ b/src/gallium/frontends/lavapipe/lvp_device.c @@ -1218,7 +1218,7 @@ VKAPI_ATTR void VKAPI_CALL lvp_GetPhysicalDeviceMemoryProperties( pMemoryProperties->memoryHeapCount = 1; pMemoryProperties->memoryHeaps[0] = (VkMemoryHeap) { - .size = 2ULL*1024*1024*1024, + .size = 3ULL*1024*1024*1024, .flags = VK_MEMORY_HEAP_DEVICE_LOCAL_BIT, }; }