Vulkan: Fix a comment.

This commit is contained in:
Unknown W. Brackets 2017-11-04 22:29:12 -07:00
parent 97fa0a7461
commit dc200a4fbc

View file

@ -659,7 +659,7 @@ void VulkanRenderManager::Submit(int frame, bool triggerFence) {
assert(res == VK_SUCCESS);
}
// TODO: If !triggerFence, we're actually not using the thread right now.
// When !triggerFence, we notify after syncing with Vulkan.
if (useThread && triggerFence) {
VLOG("PULL: Frame %d.readyForFence = true", frame);
std::unique_lock<std::mutex> lock(frameData.push_mutex);