Home | Categories | Alphabetical | Classes | All Contents | [ < ] | [ > ]

Improving Redraw Performance


Within interactive graphics applications, it is often necessary to redraw a given view over and over again (for example, as the user clicks and drags within the view to manipulate one or more objects). During those redraws, it may be that only a small subset of the objects within the view is changing, while the remaining objects are static. In such a case, it may be more efficient to take a snapshot of the unchanged portion of the view. This snapshot can be reused for each draw, and only the changing portion of the view needs to be re-rendered. This process is called instancing. For more information on instancing, see Instancing.


Home | Categories | Alphabetical | Classes | All Contents | [ < ] | [ > ]