Changeset fe5c3ba in opengl-game for vulkan-utils.hpp


Ignore:
Timestamp:
Sep 22, 2019, 2:28:22 AM (5 years ago)
Author:
Dmitry Portnoy <dmp1488@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
a0c5f28
Parents:
90a424f
Message:

In vulkangame, change the pickPhysicalDevice() and isDeviceSuitable() functions to take the deviceExtensions list as a parameter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vulkan-utils.hpp

    r90a424f rfe5c3ba  
    3737            const VkAllocationCallbacks* pAllocator);
    3838
    39       static QueueFamilyIndices findQueueFamilies(VkPhysicalDevice device, VkSurfaceKHR surface);
    40       static bool checkDeviceExtensionSupport(VkPhysicalDevice device, const vector<const char*>& deviceExtensions);
    41       static SwapChainSupportDetails querySwapChainSupport(VkPhysicalDevice device, VkSurfaceKHR surface);
     39      static QueueFamilyIndices findQueueFamilies(VkPhysicalDevice physicalDevice, VkSurfaceKHR surface);
     40      static bool checkDeviceExtensionSupport(VkPhysicalDevice physicalDevice, const vector<const char*>& deviceExtensions);
     41      static SwapChainSupportDetails querySwapChainSupport(VkPhysicalDevice physicalDevice, VkSurfaceKHR surface);
    4242};
    4343
Note: See TracChangeset for help on using the changeset viewer.