Lightweight OpenGL 3D Renderer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Euclid/headers/window.hpp

32 lines
787 B

#pragma once
#include "GLFW/glfw3.h"
// Default window dimensions
#define D_WINDOW_TITLE "Euclid Engine"
// #define D_WINDOW_WIDTH 640
// #define D_WINDOW_HEIGHT 480
#define D_WINDOW_WIDTH 1920
#define D_WINDOW_HEIGHT 1080
class Window {
public:
GLFWwindow* win;
Window(const char* title);
Window(const char* title, unsigned int w, unsigned int h);
void spawn();
unsigned int width() { return _width; } // getters and dumb and
unsigned int height() { return _height; } // cpp should have readonly fields...
private:
const char* _title = D_WINDOW_TITLE;
unsigned int _width = D_WINDOW_WIDTH;
unsigned int _height = D_WINDOW_HEIGHT;
void updateSize();
void setWidth(unsigned int w) { _width = w; }
void setHeight(unsigned int h) { _height = h; }
};