debug TestImgui

This commit is contained in:
2025-03-22 00:56:41 -05:00
parent 523ae5a22d
commit 393c49514c
2 changed files with 13 additions and 3 deletions

View File

@@ -32,6 +32,10 @@ namespace Archimedes {
glfwSwapBuffers(w);
}
void WindowGLFW::getSize(int& w, int& h) {
glfwGetFramebufferSize(this->w, &w, &h);
}
WindowGLFW::~WindowGLFW() {
glfwTerminate();
}