Changeset 7fc5e27 in opengl-game for game-gui-sdl.hpp
- Timestamp:
- Sep 3, 2019, 7:07:39 PM (5 years ago)
- Branches:
- feature/imgui-sdl, master, points-test
- Children:
- b6e60b4
- Parents:
- 1ce9afe
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
game-gui-sdl.hpp
r1ce9afe r7fc5e27 11 11 class GameGui_SDL : public GameGui { 12 12 public: 13 string& GetError();13 string& getError(); 14 14 15 bool Init();16 void Shutdown();15 bool init(); 16 void shutdown(); 17 17 18 void* CreateWindow(const string& title, unsigned int width, unsignedint height, bool fullscreen);19 void DestroyWindow();18 void* createWindow(const string& title, int width, int height, bool fullscreen); 19 void destroyWindow(); 20 20 21 21 #ifdef GAMEGUI_INCLUDE_VULKAN 22 bool CreateVulkanSurface(VkInstance instance, VkSurfaceKHR* surface);22 bool createVulkanSurface(VkInstance instance, VkSurfaceKHR* surface); 23 23 #endif 24 24 25 vector<const char*> GetRequiredExtensions();26 void GetWindowSize(int* width, int* height);25 vector<const char*> getRequiredExtensions(); 26 void getWindowSize(int* width, int* height); 27 27 28 28 private:
Note:
See TracChangeset
for help on using the changeset viewer.