jGL
Loading...
Searching...
No Matches
vkParticles.h
Go to the documentation of this file.
1#ifndef VKPARTICLES
2#define VKPARTICLES
3
4#include <jGL/particles.h>
5
6namespace jGL::Vulkan
7{
8 class vkParticles : public Particles
9 {
10 public:
11
12 vkParticles(size_t sizeHint)
13 : Particles(sizeHint)
14 {}
15
16 void update(Particles::UpdateInfo info) {TODO("jGL::Vulkan::vkParticles::update");}
17
18 void draw(glm::mat4 proj) {TODO("jGL::Vulkan::vkParticles::draw");}
19
20 void setTexture(std::shared_ptr<Texture>) {TODO("jGL::Vulkan::vkParticles::setTexture");}
21 };
22}
23
24#endif /* VKPARTICLES */
Definition particles.h:14
Definition vkParticles.h:9
void setTexture(std::shared_ptr< Texture >)
Definition vkParticles.h:20
void draw(glm::mat4 proj)
Definition vkParticles.h:18
void update(Particles::UpdateInfo info)
Definition vkParticles.h:16
vkParticles(size_t sizeHint)
Definition vkParticles.h:12
Definition buffer.h:10
Definition particles.h:19
void TODO(std::string context)
Definition warning.cpp:3