diff --git a/src/gallium/drivers/zink/zink_resource.c b/src/gallium/drivers/zink/zink_resource.c index 155805d5cd1..55bc85cdc85 100644 --- a/src/gallium/drivers/zink/zink_resource.c +++ b/src/gallium/drivers/zink/zink_resource.c @@ -1584,6 +1584,7 @@ resource_create(struct pipe_screen *pscreen, res->base.b = *templ; bool allow_cpu_storage = (templ->target == PIPE_BUFFER) && + (templ->usage != PIPE_USAGE_STREAM) && (templ->width0 < 0x1000); threaded_resource_init(&res->base.b, allow_cpu_storage); pipe_reference_init(&res->base.b.reference, 1);