GLFW host changes

This commit is contained in:
2024-06-28 20:36:30 -05:00
parent 4b77d1b613
commit 2dc4d23151

View File

@ -10,8 +10,13 @@
#include "game/Game.hpp"
#include "display/BackBuffer.hpp"
#define DAWN_GLFW_WIDTH_DEFAULT 800
#define DAWN_GLFW_HEIGHT_DEFAULT 600
#ifndef DAWN_GLFW_WIDTH_DEFAULT
#define DAWN_GLFW_WIDTH_DEFAULT 800
#endif
#ifndef DAWN_GLFW_HEIGHT_DEFAULT
#define DAWN_GLFW_HEIGHT_DEFAULT 600
#endif
namespace Dawn {
enum class DawnGLFWInitResult {