2021-01-18 03:46:06 +00:00
|
|
|
#ifndef __QF_Vulkan_qf_particles_h
|
|
|
|
#define __QF_Vulkan_qf_particles_h
|
|
|
|
|
|
|
|
#include "QF/image.h"
|
|
|
|
|
|
|
|
struct cvar_s;
|
|
|
|
struct vulkan_ctx_s;;
|
|
|
|
|
2021-01-19 16:23:24 +00:00
|
|
|
void Vulkan_ClearParticles (struct vulkan_ctx_s *ctx);
|
|
|
|
void Vulkan_InitParticles (struct vulkan_ctx_s *ctx);
|
2021-01-18 03:46:06 +00:00
|
|
|
void Vulkan_r_easter_eggs_f (struct cvar_s *var, struct vulkan_ctx_s *ctx);
|
|
|
|
void Vulkan_r_particles_style_f (struct cvar_s *var, struct vulkan_ctx_s *ctx);
|
|
|
|
void Vulkan_Particles_Init (struct vulkan_ctx_s *ctx);
|
2021-01-19 16:23:24 +00:00
|
|
|
void Vulkan_DrawParticles (struct vulkan_ctx_s *ctx);
|
2021-01-18 03:46:06 +00:00
|
|
|
|
|
|
|
#endif//__QF_Vulkan_qf_particles_h
|