blob: ed3c31a60027468ab4052a62fa75f7dc31032018 [file] [log] [blame]
typedef struct __attribute__((packed, aligned(4))) Ball {
float2 delta;
float2 position;
float3 color;
int arcID;
float arcStr;
} Ball_t;
Ball_t *balls;
typedef struct BallControl {
uint32_t dimX;
rs_allocation ain;
rs_allocation aout;
float dt;
} BallControl_t;