diff --git a/vulkan.d b/vulkan.d index 64eb40d..b331e3d 100644 --- a/vulkan.d +++ b/vulkan.d @@ -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) {