From 15a860bc42a793643499736ea96b5f4f3cfad1ce Mon Sep 17 00:00:00 2001 From: saschawillems Date: Sat, 19 Mar 2016 20:10:41 +0100 Subject: [PATCH] Added particle system example to the readme --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 5637d71e..37286012 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,13 @@ Shows the use of instancing for rendering the same mesh with differing uniforms Based on the mesh loading example, this example loads and displays a rigged COLLADA model including animations. Bone weights are extracted for each vertex and are passed to the vertex shader together with the final bone transformation matrices for vertex position calculations.

+## [Particle system](particlefire/) + + +Point sprite based particle system simulating a fire. Particles and their attributes are stored in a host visible vertex buffer that's updated on the CPU on each frame. Also makes use of pre-multiplied alpha for rendering particles with different blending modes (smoke and fire) in one single pass. + + + ## [Push constants](pushconstants/)