diff --git a/src/nouveau/vulkan/nvk_physical_device.c b/src/nouveau/vulkan/nvk_physical_device.c index ed95fc30ac0..21feaa1f5e0 100644 --- a/src/nouveau/vulkan/nvk_physical_device.c +++ b/src/nouveau/vulkan/nvk_physical_device.c @@ -50,6 +50,7 @@ nvk_GetPhysicalDeviceProperties2(VkPhysicalDevice physicalDevice, .maxImageDimensionCube = 0x8000, .maxPushConstantsSize = NVK_MAX_PUSH_SIZE, .maxMemoryAllocationCount = 1024, + .bufferImageGranularity = pdev->dev->chipset >= 0x120 ? 0x400 : 0x10000, .maxFramebufferHeight = pdev->dev->chipset >= 0x130 ? 0x8000 : 0x4000, .maxFramebufferWidth = pdev->dev->chipset >= 0x130 ? 0x8000 : 0x4000, .maxFramebufferLayers = 2048,