aboutsummaryrefslogtreecommitdiffstats
path: root/yage/data/renderbatch.h
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-01-03 13:26:37 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-01-03 13:27:23 +0000
commit86e4aa6265ade205aba94494a7a31a83b5686387 (patch)
treed7f9998b55d3fcc2b083242086afd05c1d436b6e /yage/data/renderbatch.h
parent9038ee45f93b1ae07a28a516781676ebe3a67536 (diff)
downloadYAGE-86e4aa6265ade205aba94494a7a31a83b5686387.tar.gz
YAGE-86e4aa6265ade205aba94494a7a31a83b5686387.zip
[Engine] [Example] Reenabled vsync and working on example.
Diffstat (limited to 'yage/data/renderbatch.h')
-rw-r--r--yage/data/renderbatch.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/yage/data/renderbatch.h b/yage/data/renderbatch.h
deleted file mode 100644
index 51521ec5..00000000
--- a/yage/data/renderbatch.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef YAGE_CORE_RENDERBATCH_H
-#define YAGE_CORE_RENDERBATCH_H
-
-#include <glad/glad.h>
-
-struct RenderBatch {
- GLint offset;
- GLsizei num_vertices;
- GLuint texture;
-
- RenderBatch(GLint offset_i, GLsizei num_vertices_i, GLuint texture_i)
- : offset(offset_i), num_vertices(num_vertices_i), texture(texture_i)
- {
- }
-};
-
-#endif