We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
Page Index Toggle Pages: 1
CPU or GPU rendering? (Read 683 times)
CPU or GPU rendering?
Apr 13th, 2009, 7:57am
 
I was wondering when Processing rendered its images, especially when using OpenGL and 3D Libraries, does it do so using the CPU, or does it render with the GPU of the system being used?
Re: CPU or GPU rendering?
Reply #1 - Apr 13th, 2009, 3:55pm
 
OpenGL renders with the GPU, but I think Processing still does it's own matrix transformations so that will be slower.

The biggest bottleneck though is generally sending the data to render to the card itself, so using display lists and instancing can speed up your rendering quite a bit.
Page Index Toggle Pages: 1