From 0a5d09eabac2c26232cffd141d4bdaea1ab06f62 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 19 Sep 2024 05:53:30 -0400 Subject: [PATCH] lavapipe: bump mipmapPrecisionBits 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 57f77ffc0c3..e507c4a7628 100644 --- a/src/gallium/frontends/lavapipe/lvp_device.c +++ b/src/gallium/frontends/lavapipe/lvp_device.c @@ -859,7 +859,7 @@ lvp_get_properties(const struct lvp_physical_device *device, struct vk_propertie .maxComputeWorkGroupSize = { block_size[0], block_size[1], block_size[2] }, .subPixelPrecisionBits = device->pscreen->get_param(device->pscreen, PIPE_CAP_RASTERIZER_SUBPIXEL_BITS), .subTexelPrecisionBits = 8, - .mipmapPrecisionBits = 4, + .mipmapPrecisionBits = 6, .maxDrawIndexedIndexValue = UINT32_MAX, .maxDrawIndirectCount = UINT32_MAX, .maxSamplerLodBias = 16,