diff --git a/.pick_status.json b/.pick_status.json index 29a40c7d8e2..853dae58ecc 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -2983,7 +2983,7 @@ "description": "zink: block suballocator caching for swapchain/dmabuf images", "nominated": true, "nomination_type": 0, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": null }, diff --git a/src/gallium/drivers/zink/zink_bo.c b/src/gallium/drivers/zink/zink_bo.c index 8594e3be0bb..b5c815de033 100644 --- a/src/gallium/drivers/zink/zink_bo.c +++ b/src/gallium/drivers/zink/zink_bo.c @@ -259,7 +259,7 @@ bo_create_internal(struct zink_screen *screen, } /* all non-suballocated bo can cache */ - init_pb_cache = true; + init_pb_cache = !pNext; bo = CALLOC(1, sizeof(struct zink_bo) + init_pb_cache * sizeof(struct pb_cache_entry)); if (!bo) {