Changeset 8667f76 in opengl-game for game-gui.hpp


Ignore:
Timestamp:
Jul 19, 2019, 9:49:52 PM (5 years ago)
Author:
Dmitry Portnoy <dmitry.portnoy@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
80edd70
Parents:
0e6ecf3
git-author:
Dmitry Portnoy <dmitry.portnoy@…> (07/19/19 21:45:27)
git-committer:
Dmitry Portnoy <dmitry.portnoy@…> (07/19/19 21:49:52)
Message:

Move getWindowSize and getRequiredExtensions to the game gui

File:
1 edited

Legend:

Unmodified
Added
Removed
  • game-gui.hpp

    r0e6ecf3 r8667f76  
    55
    66#include <string>
     7#include <vector>
    78
    89using namespace std;
     
    2122      virtual void DestroyWindow() = 0;
    2223
    23       virtual bool CreateVulkanSurface(VkInstance instance, VkSurfaceKHR* surface) = 0;
     24      virtual bool CreateVulkanSurface(VkInstance instance, VkSurfaceKHR* surface) = 0;
     25      virtual vector<const char*> GetRequiredExtensions() = 0;
     26      virtual void GetWindowSize(int* width, int* height) = 0;
    2427};
    2528
Note: See TracChangeset for help on using the changeset viewer.