Changeset 7fc5e27 in opengl-game for game-gui-glfw.hpp


Ignore:
Timestamp:
Sep 3, 2019, 7:07:39 PM (6 years ago)
Author:
Dmitry Portnoy <dmitry.portnoy@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
b6e60b4
Parents:
1ce9afe
Message:

Change all game-gui function names to lower camel case

File:
1 edited

Legend:

Unmodified
Added
Removed
  • game-gui-glfw.hpp

    r1ce9afe r7fc5e27  
    2121      static bool s_keyDown[NUM_KEYS];
    2222
    23       string& GetError();
     23      string& getError();
    2424
    25       bool Init();
    26       void Shutdown();
     25      bool init();
     26      void shutdown();
    2727
    28       void* CreateWindow(const string& title, unsigned int width, unsigned int height, bool fullscreen);
    29       void DestroyWindow();
     28      void* createWindow(const string& title, int width, int height, bool fullscreen);
     29      void destroyWindow();
    3030
    3131#ifdef GAMEGUI_INCLUDE_VULKAN
    32       bool CreateVulkanSurface(VkInstance instance, VkSurfaceKHR* surface);
     32      bool createVulkanSurface(VkInstance instance, VkSurfaceKHR* surface);
    3333#endif
    3434
    35       vector<const char*> GetRequiredExtensions();
    36       void GetWindowSize(int* width, int* height);
     35      vector<const char*> getRequiredExtensions();
     36      void getWindowSize(int* width, int* height);
    3737
    3838   private:
    3939      GLFWwindow* window;
     40
     41      int windowWidth, windowHeight;
    4042};
    4143
Note: See TracChangeset for help on using the changeset viewer.