From c216f00f1eaff368229cb8430422972fcac801b7 Mon Sep 17 00:00:00 2001 From: jsmall-nvidia Date: Thu, 3 May 2018 17:17:05 -0400 Subject: Fixes based on review of vulkan-first-render PR #545 (#546) --- tools/render-test/vk-device-queue.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'tools/render-test/vk-device-queue.h') diff --git a/tools/render-test/vk-device-queue.h b/tools/render-test/vk-device-queue.h index ea50cbd81..8381f5166 100644 --- a/tools/render-test/vk-device-queue.h +++ b/tools/render-test/vk-device-queue.h @@ -30,11 +30,10 @@ struct VulkanDeviceQueue /// Blocks until all work submitted to GPU has completed void waitForIdle() { m_api->vkQueueWaitIdle(m_queue); } - /// Set the graphics queue index (as set on init) + /// Get the graphics queue index (as set on init) int getQueueIndex() const { return m_queueIndex; } - - /// Make the specified event 'current' - meaning it's semaphone must be waited on + /// Make the specified event 'current' - meaning it's semaphore must be waited on VkSemaphore makeCurrent(EventType eventType); /// Makes the event no longer required to be waited on void makeCompleted(EventType eventType); -- cgit v1.2.3