From b418a8fc87f8e0fa004c9cf054cef73167d21ec4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 16 Aug 2022 16:24:37 +0200 Subject: [PATCH] Vk: add a clickable reference to Queue::submit() from CommandBuffer docs. Too hard / annoying to figure out what the APIs and types are otherwise. --- src/Magnum/Vk/CommandBuffer.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Magnum/Vk/CommandBuffer.h b/src/Magnum/Vk/CommandBuffer.h index a6bf6af20..7c059f464 100644 --- a/src/Magnum/Vk/CommandBuffer.h +++ b/src/Magnum/Vk/CommandBuffer.h @@ -200,9 +200,10 @@ delimited with @ref beginRenderPass() and @ref endRenderPass(), see @snippet MagnumVk.cpp CommandBuffer-usage -Once recorded, the command buffer can be submitted to a compatible @ref Queue -that was set up at @ref Vk-Device-creation "device creation time". Usually -you'd want to wait on the submit completion with a @link Fence @endlink: +Once recorded, call @ref Queue::submit() to submit the command buffer to a +compatible @ref Queue that was set up at +@ref Vk-Device-creation "device creation time". Usually you'd want to wait on +the submit completion with a @link Fence @endlink: @snippet MagnumVk.cpp CommandBuffer-usage-submit */