]> Witch of Git - lovr-particles/log
lovr-particles
4 years agoAdd velocities and padding to the particle data
Cassie Jones [Fri, 31 Jan 2020 10:13:41 +0000 (05:13 -0500)]
Add velocities and padding to the particle data

For now I'm using 2 vec4 of padding because LÖVR's ShaderBlock API
doesn't know about struct types or non-square matrices, and I need a
type which can hold 2 vec4, so I just pretend I'm sending a mat4 and
receive it as a struct of 4 vec4 on the shader side.

4 years agoRender lots of particles with SSBOs!
Cassie Jones [Fri, 31 Jan 2020 07:35:09 +0000 (02:35 -0500)]
Render lots of particles with SSBOs!

We generate particle batch meshes with a fixed chunk of quads at the
origin, and then dispatch instances of that batch. The vertex shader
fetches from a shader storage buffer of particle info by using the
instance ID (between batches) and the vertex ID (within batches), using
the batch size. We need to run these in batches because GPUs process
instances somewhat serially, so if you have a tiny instance you're
wasting a bunch of spare compute instead of running nicely in parallel.
Having smaller instances than the full particle size helps with avoiding
rendering lots of hidden particles if you're using dynamic particle
counts, and also gives smaller data uploads (although that's not
particularly significant, since they're static buffers of geometry).

The shaders do billboarding based on head position rather than the
projection matrices so they don't visibly move when you rotate your
head: projection-based billboards look really bad in VR it turns out.

4 years agoInitial commit, stymied by LÖVR bugs
Cassie Jones [Thu, 30 Jan 2020 21:28:55 +0000 (16:28 -0500)]
Initial commit, stymied by LÖVR bugs

This adds a main test program and a simple (currently broken) sprite
billboarding shader. It doesn't have much going on, because I'm running
into a LÖVR bug with sending compute ShaderBlock data on Oculus Quest.