add framerate limiter
This commit is contained in:
parent
9ce2fa6124
commit
e9264127c5
7 changed files with 73 additions and 0 deletions
|
@ -11,6 +11,7 @@ Window::Window(uint16_t width, uint16_t height, const std::string& title) :
|
|||
handle(nullptr)
|
||||
{
|
||||
glfwWindowHint(GLFW_RESIZABLE, GLFW_FALSE);
|
||||
|
||||
handle = glfwCreateWindow(width, height, title.c_str(), nullptr, nullptr);
|
||||
if (handle == nullptr)
|
||||
{
|
||||
|
@ -20,6 +21,7 @@ Window::Window(uint16_t width, uint16_t height, const std::string& title) :
|
|||
}
|
||||
|
||||
glfwMakeContextCurrent(handle);
|
||||
glfwSwapInterval(1);
|
||||
Input::SetWindow(this);
|
||||
}
|
||||
|
||||
|
|
12
src/gfx/imgui.ini
Normal file
12
src/gfx/imgui.ini
Normal file
|
@ -0,0 +1,12 @@
|
|||
[Window][Debug##Default]
|
||||
Pos=60,60
|
||||
Size=400,400
|
||||
Collapsed=0
|
||||
|
||||
[Window][Debugger]
|
||||
Pos=217,104
|
||||
Size=400,325
|
||||
Collapsed=0
|
||||
|
||||
[Docking][Data]
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue