aboutsummaryrefslogtreecommitdiffstats
path: root/src/events/world.hpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-16 18:16:43 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-16 18:16:43 -0400
commit0236eb7f6391c9d925dcaaddb8cb01ecfb7d5e55 (patch)
treefcc7ad078ec6e2eb0691ab1c4de2915ff6baed78 /src/events/world.hpp
parentbce8d0687f44def4b0171cd84bf1441fc4390e58 (diff)
Render system is now decoupled from the world system
Diffstat (limited to 'src/events/world.hpp')
-rw-r--r--src/events/world.hpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/events/world.hpp b/src/events/world.hpp
index 41b9569..e5969c0 100644
--- a/src/events/world.hpp
+++ b/src/events/world.hpp
@@ -31,9 +31,13 @@ struct WorldChangeEvent
struct WorldMeshUpdateEvent
{
GLuint worldVBO;
+ unsigned int numVertex;
+ GLuint worldTexture;
+ GLuint worldNormal;
- WorldMeshUpdateEvent(GLuint v) :
- worldVBO(v) {}
+ WorldMeshUpdateEvent(GLuint v, unsigned int p,
+ GLuint t, GLuint n) :
+ worldVBO(v), numVertex(p), worldTexture(t), worldNormal(n) {}
};
#endif//EVENTS_WORLD_HPP