Particles on the GPU

Started by
9 comments, last by 21st Century Moose 11 years, 7 months ago
So I just figured out how to make a rocket launcher work in terms of physics and now I need to make a kick ass trail of smoke and flames to complete it.

I know making particle effects are pretty straightforward but I was wondering If there was a way to not only render but also simulate particles on the GPU. Seeing as the particles don't affect gameplay whatsoever I assumed this was possible. I expected that I could make an emitter object on the CPU side and the GPU would take over the rest after being fed the position of the emitter. Could anyone possibly point me in the right direction for how to have the GPU actually create polygons without having them fed from the cpu?

Thanks.
Advertisement
A Geometry shader can create polygons on the GPU. The most important question, however, is do you need the particles to collide with the level geometry? (if so you'd need to have the entire physics level on the gpu etc and I don't think it would be worth it. If your particles just follow some mathmatic trajectory (say they just have position, velocity, and acceleration) then you could just pass those to the GPU once and let the GPU integrate the new position each frame quite easily. If you're working in 2D or can use point sprites you don't even need a geometry shader.

A Geometry shader can create polygons on the GPU. The most important question, however, is do you need the particles to collide with the level geometry? (if so you'd need to have the entire physics level on the gpu etc and I don't think it would be worth it.


my particles simply float downward and fade
Should be doable then :) Is the game 3D or 2D?

Should be doable then smile.png Is the game 3D or 2D?


100% 3d. I just don't wan't to consume bandwidth sending a bunch of little polygons to the gpu if they could be done on the gpu itself
What GL version you targeting?

What GL version you targeting?


I'm targeting GL 2.1 as far as I know there should be an extension for geometry shaders
As long as your particles are just quads it will be much easier (and more efficient) to use point sprites. I'd suggest you look into them before you go diving into geometry shaders

[quote name='zacaj' timestamp='1347929593' post='4981083']
What GL version you targeting?


I'm targeting GL 2.1 as far as I know there should be an extension for geometry shaders
[/quote]

Nvidia will have support for it under 2.1 and IIRC AMD with DX10 class hardware, but you can forget about Intel.... unless it supports GL3+ explicitly.
man, intel can be so difficult sometimes. I guess intel will need to have a little bit more cpu work

This topic is closed to new replies.

Advertisement