add clear color for built in draw image

This commit is contained in:
Matthew 2025-08-25 05:08:43 +10:00
parent e5f47772a5
commit abc39f3f86

View File

@ -1968,6 +1968,12 @@ CreateComputePipeline(Vulkan* vk, CompPipelineInfo* comp_info)
return pipeline_handle;
}
void
ClearColor(Vulkan* vk, f32[4] color)
{
ClearColor(vk, &vk.draw_image, color);
}
void
ClearColor(Vulkan* vk, ImageView* view, f32[4] color)
{