Parallel rendering

This is an old revision of this page, as edited by Charles Matthews (talk | contribs) at 11:58, 12 October 2004 (reorder). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Parallel rendering is used to improve the performance of computer graphics. The rendering of graphics requires high computational resources for complex objects like medical visualization, iso-surface generation and some CAD applications. Traditional methods like ray-casting, 3D textures, etc., work extremely slow in simple machines.

Parallel rendering divides the work to be done and processes it in parallel. For example, if we have a ray-casting application, we would be sending rays one by one to all the pixels in the view frustum. Instead we can divide the whole frustum into some x number of parts and then run that many threads or processes to send rays in parallel to those x tiles. We can use a cluster of machines to do such thing and then composite the results. This is parallel rendering.

Parallel rendering can be used in graphics intensive applications to visualize the data more efficiently by adding some resources like more machines etc.

There is an open source software chromium (http://chromium.sourceforge.net) that provides parallel rendering mechanism for existing applications.