kk: Increase maxFragmentCombinedOutputResources to KK_MAX_DESCRIPTORS

Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/15249 for kk
Signed-off-by: Aitor Camacho <aitor@lunarg.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41026>
This commit is contained in:
Aitor Camacho 2026-04-17 19:49:31 +09:00 committed by Marge Bot
parent ebe4a56650
commit 94cac134dd

View file

@ -399,7 +399,7 @@ kk_get_device_properties(const struct kk_physical_device *pdev,
.maxFragmentInputComponents = 128,
.maxFragmentOutputAttachments = KK_MAX_RTS,
.maxFragmentDualSrcAttachments = 1,
.maxFragmentCombinedOutputResources = 16,
.maxFragmentCombinedOutputResources = KK_MAX_DESCRIPTORS,
.maxComputeSharedMemorySize = KK_MAX_SHARED_SIZE,
.maxComputeWorkGroupCount = {0x7fffffff, 65535, 65535},
.maxComputeWorkGroupInvocations = pdev->info.max_workgroup_invocations,
@ -741,7 +741,7 @@ kk_physical_device_init_pipeline_cache(struct kk_physical_device *pdev)
_mesa_blake3_init(&blake3_ctx);
_mesa_blake3_update(&blake3_ctx, instance->driver_build_sha,
sizeof(instance->driver_build_sha));
sizeof(instance->driver_build_sha));
unsigned char blake3[BLAKE3_KEY_LEN];
_mesa_blake3_final(&blake3_ctx, blake3);