Getting Started
...
Glossary
N-Z Terms

Overdraw

2min

A term used in computer graphics to describe the situation in which the same pixel is rendered multiple times. This can happen for a variety of reasons, such as when two or more objects are overlapping or when the same object is rendered from multiple viewpoints.

Overdraw can have a negative impact on the performance of a graphics application, as it can waste valuable rendering resources. It can also lead to visual artifacts, such as flickering or ghosting.

There are a number of ways to reduce overdraw in computer graphics, such as:

  • Using occlusion culling: Occlusion culling is a technique that can be used to identify objects that are hidden from the viewpoint and then not rendering them. This can help to reduce overdraw by preventing the same pixel from being rendered multiple times.
  • Using alpha blending: Alpha blending is a technique that can be used to blend the colors of two or more objects together. This can help to reduce overdraw by preventing the same pixel from being rendered with multiple different colors.
  • Using a z-buffer: A z-buffer is a data structure that can be used to store the depth of each pixel in a scene. This can help to reduce overdraw by preventing the same pixel from being rendered multiple times if it is already visible.
  • Using a deferred rendering pipeline: A deferred rendering pipeline is a rendering technique that can be used to reduce overdraw by rendering the geometry of a scene once and then rendering the lighting of the scene separately.

It is important to note that overdraw is not always a bad thing. In some cases, overdraw can be used to create specific visual effects, such as depth of field or motion blur. However, in general, overdraw should be minimized to improve the performance and visual quality of a graphics application.

Here are some additional tips for reducing overdraw in computer graphics:

  • Use a consistent naming convention: Using a consistent naming convention for objects and materials will make it easier to identify potential overdraw areas.
  • Use high-quality meshes: Using high-quality meshes can help to reduce overdraw by preventing the same pixel from being rendered multiple times.
  • Use a profiler: A profiler is a tool that can be used to measure the performance of a graphics application. Using a profiler can help you to identify areas of your application that are causing overdraw.
  • Use a debugger: A debugger is a tool that can be used to step through your code line by line. Using a debugger can help you to identify and fix bugs in your code that are causing overdraw.

Feedback

Please be sure to submit issues or feature requests through the embedded feedback form. In the event it is a major issue please contact us directly through Discord.

Updated 03 Apr 2024
Doc contributor
Did this page help you?