From 6670035f83ae51f8a4ff8e77da0fa64066d33c19 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 26 Jul 2023 16:55:50 +0100 Subject: [PATCH 1/2] Fuxed typo --- examples/app/vsgdeviceselection/vsgdeviceselection.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/app/vsgdeviceselection/vsgdeviceselection.cpp b/examples/app/vsgdeviceselection/vsgdeviceselection.cpp index 118b4d77..00c605aa 100644 --- a/examples/app/vsgdeviceselection/vsgdeviceselection.cpp +++ b/examples/app/vsgdeviceselection/vsgdeviceselection.cpp @@ -128,11 +128,11 @@ int main(int argc, char** argv) // list the queue properties - auto& queuFamilyProperties = physicalDevice->getQueueFamilyProperties(); - std::cout<<" QueueFamilyProperties "<getQueueFamilyProperties(); + std::cout<<" QueueFamilyProperties "< flags; if ((prop.queueFlags & VK_QUEUE_GRAPHICS_BIT)) flags.push_back("GRAPHICS"); if ((prop.queueFlags & VK_QUEUE_COMPUTE_BIT)) flags.push_back("COMPUTE"); From 1dd260b56e10aef4766fdd104f4300cb3e39509f Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 26 Jul 2023 17:48:50 +0100 Subject: [PATCH 2/2] Changed rc back to 0. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ab0718c4..8ba6cf44 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ project(vsgExamples LANGUAGES CXX C ) -SET(VSGEXAMPLES_RELEASE_CANDIDATE 1) +SET(VSGEXAMPLES_RELEASE_CANDIDATE 0) # build all examples into the bin directory set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin)