| 152 | } |
| 153 | |
| 154 | void ParticleSystem::create_program() |
| 155 | { |
| 156 | wf::gles::run_in_context([&] |
| 157 | { |
| 158 | program.set_simple(OpenGL::compile_program(particle_vert_source, |
| 159 | particle_frag_source)); |
| 160 | }); |
| 161 | } |
| 162 | |
| 163 | void ParticleSystem::render(glm::mat4 matrix) |
| 164 | { |
nothing calls this directly
no test coverage detected