Occluders and occludees

When rendering a complex scene, it is very common that two or more objects are overlapped, from the perspective of the viewer. This could lead to an overdraw, which means that pixels at the same location will be written to the frame buffer several times, while the final image only shows the last one. This causes efficiency losses because of multiple drawing that is not necessary (so called overdrawing).

The Occlusion culling technique simply increases the rendering performance by not rendering geometries hidden by other objects that are closer to the camera. The objects that cover other renderables are called occluders, and the rest of the scene graph can be treated as occludees (but it's not necessary to use such an unfamiliar ...

Get OpenSceneGraph 3.0 now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.