Face Culling

From OpenGL Wiki
(Redirected from Culling)
Jump to navigation Jump to search

Triangle primitives after all transformation steps have a particular facing. This is defined by the order of the three vertices that make up the triangle, as well as their apparent order on-screen. Triangles can be discarded based on their apparent facing, a process known as Face Culling.

Winding order[edit]

When the user issues a Drawing Command, the vertices processed by the Rendering Pipeline are processed in the order provided by Vertex Specification. The Geometry Shader can alter the order, but even then, the vertices created by each GS invocation are ordered relative to the other vertices. The Tessellation Evaluation Shader can directly control the order of the vertices in the tessellated patch using special options.

When vertices are broken down into Primitives during Primitive Assembly, the order of the vertices relative to the others in the primitive is noted. The order of the vertices in a triangle, when combined with their visual orientation, can be used to determine whether the triangle is being seen from the "front" or the "back" side.

This is determined by the winding order of the triangle. Given an ordering of the triangle's three vertices, a triangle can appear to have a clockwise winding or counter-clockwise winding. Clockwise means that the three vertices, in order, rotate clockwise around the triangle's center. Counter-clockwise means that the three vertices, in order, rotate counter-clockwise around the triangle's center.

Winding order.png

Which side is considered the "front" side is controlled by this function:

void glFrontFace(GLenum mode​);

This is global state. mode​ may be GL_CW or GL_CCW, which mean clockwise or counter-clockwise is front, respectively. On a freshly created OpenGL Context, the default front face is GL_CCW.

Non-triangle primitives will always be considered to be showing their front face.

Tessellation[edit]

The winding order of the abstract patch vertices generated during Tessellation is controlled by the Tessellation Evaluation Shader. It is a layout option specified by the TES, rather than a runtime value. The winding order is specified in terms of the direction: cw and ccw. Which is considered "front" is still defined by glFrontFace.

Note that this only specifies the winding order of the triangles in the space of the abstract patch. Each triangle's final winding order will be based on how the positions of those vertices are transformed by the TES (or a subsequent Geometry Shader). So this setting is only a starting point, not an ending point.

Culling[edit]

The primary use of setting the front facing of a triangle is to allow the culling of the front or back facing triangles.

Consider a cube; this is made of 12 triangles, but 6 of them will be facing in the opposite direction from the other 6. Unless the cube is transparent, 6 of the triangles will always be covered up by the other 6. Indeed, depending on the projection, more than 6 triangles could be covered; imagine a cube viewed from the front that is very close to the camera. Foreshortening means that even the sides are facing away from the camera.

Face culling allows non-visible triangles of closed surfaces to be removed before expensive Rasterization and Fragment Shader operations.

To activate face culling, GL_CULL_FACE must first be enabled with glEnable. By default, face culling is disabled. To select which side will be culled, use the following function:

void glCullFace(GLenum mode​);

mode​ can be set to GL_FRONT, GL_BACK, or GL_FRONT_AND_BACK. The latter will cull all triangles. This is different from glEnable(GL_RASTERIZER_DISCARD), as the latter will shut off all Primitives, while culling both faces will only cull triangles (since only they have faces).

By default, GL_BACK is the face to be culled.

Fragment Shader[edit]

The Fragment Shader is capable of detecting which face a primitive is rasterized with. The built-in FS input gl_FrontFacing will be true if the primitive is being seen from the front (or is a primitive without a facing), and it will be false if it is seen from the back.