diff --git a/src/panfrost/vulkan/panvk_cmd_buffer.c b/src/panfrost/vulkan/panvk_cmd_buffer.c index b04691702aa..aa160c8f3fa 100644 --- a/src/panfrost/vulkan/panvk_cmd_buffer.c +++ b/src/panfrost/vulkan/panvk_cmd_buffer.c @@ -908,7 +908,7 @@ panvk_CmdNextSubpass(VkCommandBuffer cmd, VkSubpassContents contents) } -static void +void panvk_cmd_alloc_fb_desc(struct panvk_cmd_buffer *cmdbuf) { struct panvk_batch *batch = cmdbuf->state.batch; @@ -931,7 +931,7 @@ panvk_cmd_alloc_fb_desc(struct panvk_cmd_buffer *cmdbuf) batch->fb.desc.gpu |= tags; } -static void +void panvk_cmd_alloc_tls_desc(struct panvk_cmd_buffer *cmdbuf) { const struct panfrost_device *pdev = diff --git a/src/panfrost/vulkan/panvk_private.h b/src/panfrost/vulkan/panvk_private.h index b4e331fb6b9..08e6a80150f 100644 --- a/src/panfrost/vulkan/panvk_private.h +++ b/src/panfrost/vulkan/panvk_private.h @@ -673,6 +673,12 @@ void panvk_cmd_get_bifrost_tiler_context(struct panvk_cmd_buffer *cmdbuf, unsigned width, unsigned height); +void +panvk_cmd_alloc_fb_desc(struct panvk_cmd_buffer *cmdbuf); + +void +panvk_cmd_alloc_tls_desc(struct panvk_cmd_buffer *cmdbuf); + void panvk_pack_color(struct panvk_clear_value *out, const VkClearColorValue *in,