You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef __ULTRACOMBOS_DEFINES__
|
|
#define __ULTRACOMBOS_DEFINES__
|
|
|
|
#define WORK_GROUP_SIZE 512
|
|
|
|
struct Particle
|
|
{
|
|
float3 position;
|
|
float seed;
|
|
float4 color;
|
|
float3 velocity;
|
|
float life;
|
|
float4 quat;
|
|
float4x4 model_matrix;
|
|
};
|
|
|
|
#endif // __ULTRACOMBOS_DEFINES__
|
|
|