Parallel rendering: Difference between revisions

Content deleted Content added
No edit summary
Typo patrol, typos fixed: eg, → e.g., (2) using AWB (7852)
Line 1:
'''Parallel rendering''' (or '''Distributed rendering''') is the application of [[parallel programming]] to the computational ___domain of [[computer graphics]]. [[Rendering]] graphics can require massive computational resources for complex scenes that arise in [[scientific visualization]], [[medical visualization]], [[CAD]] applications, and [[virtual reality]]. Rendering is an [[embarrassingly parallel]] workload in multiple domains (ege.g., pixels, objects, frames) and thus has been the subject of much research.
 
== Workload Distribution ==
There are two, often competing, reasons for using parallel rendering. Performance scaling allows frames to be rendered more quickly while data scaling allows larger data sets to be visualized. Different methods of distributing the workload tend to favor one type of scaling over the other. There can also be other advantages and disadvantages such as [[latency]] and [[load balancing]] issues. The three main options for primitives to distribute are entire frames, pixels, or objects (ege.g. triangle meshes).
 
=== Frame distribution ===