Changeset 4eb4d0a in opengl-game for game-gui.hpp
- Timestamp:
- Aug 30, 2019, 4:01:54 PM (6 years ago)
- Branches:
- feature/imgui-sdl, master, points-test
- Children:
- 99d44b2
- Parents:
- 0df3c9a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
game-gui.hpp
r0df3c9a r4eb4d0a 2 2 #define _GAME_GUI_H 3 3 4 #include <vulkan/vulkan.h> 4 #ifdef GAMEGUI_INCLUDE_VULKAN 5 #include <vulkan/vulkan.h> 6 #endif 5 7 6 8 #include <string> … … 22 24 virtual void DestroyWindow() = 0; 23 25 26 #ifdef GAMEGUI_INCLUDE_VULKAN 24 27 virtual bool CreateVulkanSurface(VkInstance instance, VkSurfaceKHR* surface) = 0; 28 #endif 29 25 30 virtual vector<const char*> GetRequiredExtensions() = 0; 26 31 virtual void GetWindowSize(int* width, int* height) = 0;
Note:
See TracChangeset
for help on using the changeset viewer.