summaryrefslogtreecommitdiffstats
path: root/src/Renderer.hpp
blob: 306a31096fbb175c291880c1ea61e4982ae0f56a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <GL/glew.h>
#include "Utility.hpp"

class RenderState {
	GLuint ActiveVao = -1;
	GLuint ActiveShader = -1;
public:
	void SetActiveVao(GLuint Vao);
	void SetActiveShader(GLuint Shader);
    unsigned int WindowWidth, WindowHeight;
    long long TimeOfDay;
};