Changeset fe5c3ba in opengl-game for vulkan-game.hpp
- Timestamp:
- Sep 22, 2019, 2:28:22 AM (5 years ago)
- Branches:
- feature/imgui-sdl, master, points-test
- Children:
- a0c5f28
- Parents:
- 90a424f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vulkan-game.hpp
r90a424f rfe5c3ba 26 26 VkInstance instance; 27 27 VkDebugUtilsMessengerEXT debugMessenger; 28 VkSurfaceKHR surface; 28 VkSurfaceKHR surface; // TODO: Change the variable name to vulkanSurface 29 29 VkPhysicalDevice physicalDevice = VK_NULL_HANDLE; 30 30 … … 38 38 void populateDebugMessengerCreateInfo(VkDebugUtilsMessengerCreateInfoEXT& createInfo); 39 39 void createVulkanSurface(); 40 void pickPhysicalDevice( );41 bool isDeviceSuitable(VkPhysicalDevice device );40 void pickPhysicalDevice(const vector<const char*>& deviceExtensions); 41 bool isDeviceSuitable(VkPhysicalDevice device, const vector<const char*>& deviceExtensions); 42 42 43 43 static VKAPI_ATTR VkBool32 VKAPI_CALL debugCallback(
Note:
See TracChangeset
for help on using the changeset viewer.