Moved VulkanDevice to vks namespce (Refs #260)
This commit is contained in:
parent
27e8c258dc
commit
70f4daff5d
18 changed files with 38 additions and 38 deletions
|
|
@ -812,7 +812,7 @@ void VulkanExampleBase::initVulkan()
|
|||
// Vulkan device creation
|
||||
// This is handled by a separate class that gets a logical device representation
|
||||
// and encapsulates functions related to a device
|
||||
vulkanDevice = new vk::VulkanDevice(physicalDevice);
|
||||
vulkanDevice = new vks::VulkanDevice(physicalDevice);
|
||||
VkResult res = vulkanDevice->createLogicalDevice(enabledFeatures, enabledExtensions);
|
||||
if (res != VK_SUCCESS) {
|
||||
vkTools::exitFatal("Could not create Vulkan device: \n" + vkTools::errorString(res), "Fatal error");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue