aboutsummaryrefslogtreecommitdiffstats
path: root/src/particle.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-04-29 18:28:28 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-04-29 18:28:28 -0400
commit40d164ea3d8437cd5a06a06d5b89bd938d3dd906 (patch)
treeec22853ca9a18706a3318ea9d16464d9a36a7419 /src/particle.cpp
parent18380eb2e6443c2736b4958b01e7ba2fe2cfa318 (diff)
no more getSystem
Diffstat (limited to 'src/particle.cpp')
-rw-r--r--src/particle.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/particle.cpp b/src/particle.cpp
index a546c0c..f2604a6 100644
--- a/src/particle.cpp
+++ b/src/particle.cpp
@@ -7,9 +7,12 @@
#include <mutex>
+std::vector<Particle> ParticleSystem::parts;
+unsigned int ParticleSystem::maximum;
+
ParticleSystem::ParticleSystem(unsigned int max)
- : maximum(max)
{
+ maximum = max;
parts.reserve(maximum);
}
@@ -36,7 +39,7 @@ void ParticleSystem::render(void)
constexpr auto entrySize = (6 * 5) * sizeof(GLfloat);
static std::once_flag init;
- std::call_once(init, [this](GLuint& vbo) {
+ std::call_once(init, [&entrySize](GLuint& vbo) {
// generate VBO
glGenBuffers(1, &vbo);
glBindBuffer(GL_ARRAY_BUFFER, vbo);
@@ -168,7 +171,7 @@ void ParticleSystem::update(entityx::EntityManager &en, entityx::EventManager &e
}
}
-int ParticleSystem::getCount(void) const
+int ParticleSystem::getCount(void)
{
return parts.size();
}