summaryrefslogtreecommitdiffstats
path: root/src/Renderer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Renderer.cpp')
-rw-r--r--src/Renderer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Renderer.cpp b/src/Renderer.cpp
index 5fc8c2e..76cef4e 100644
--- a/src/Renderer.cpp
+++ b/src/Renderer.cpp
@@ -1,10 +1,10 @@
#include "Renderer.hpp"
void RenderState::SetActiveVao(GLuint Vao) {
- if (Vao != ActiveVao) {
- glBindVertexArray(Vao);
- ActiveVao = Vao;
- }
+ glBindVertexArray(Vao);
+ ActiveVao = Vao;
+ /*if (Vao != ActiveVao) {
+ }*/
}
void RenderState::SetActiveShader(GLuint Shader) {