Skip to content

Commit

Permalink
Merge pull request #252 from LeeRiva/lrdev2
Browse files Browse the repository at this point in the history
[FIXED] typos
  • Loading branch information
robertosfield authored Aug 23, 2023
2 parents ffac706 + c966fc6 commit 0bc5448
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/app/vsgdeviceselection/vsgdeviceselection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ int main(int argc, char** argv)
}


// create a vk/vsg::PhysicalDevice, prefer discrete GPU over integrated GPUs when they area available.
// create a vk/vsg::PhysicalDevice, prefer discrete GPU over integrated GPUs when they are available.
auto physicalDevice = physicalDevices[pd_num];
auto properties = physicalDevice->getProperties();

Expand All @@ -202,7 +202,7 @@ int main(int argc, char** argv)
auto instance = window->getOrCreateInstance();
auto surface = window->getOrCreateSurface();

// create a vk/vsg::PhysicalDevice, prefer discrete GPU over integrated GPUs when they area available.
// create a vk/vsg::PhysicalDevice, prefer discrete GPU over integrated GPUs when they are available.
auto physicalDevice = instance->getPhysicalDevice(windowTraits->queueFlags, surface, {VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU, VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU});

std::cout << "Created our own vsg::PhysicalDevice " << physicalDevice << std::endl;
Expand Down

0 comments on commit 0bc5448

Please sign in to comment.