A (OpenGL)

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

aliasing

A rendering technique that assigns to pixels the color of the primitive being rendered, whether that primitive covers all or part of the pixel's area. Aliasing results in jagged edges, or jaggies. See also jaggies.

alpha

A fourth color component typically used to control color blending. The alpha component is never displayed directly. By convention, OpenGL alpha indicates opacity and transparency on a scale of 0.0 to 1.0. An alpha value of 1.0 implies complete opacity, an alpha value of 0.0 implies complete transparency.

animation

The generation of repeated renderings of a scene quickly enough, with smoothly changing viewpoint or object positions, that the illusion of motion is achieved. OpenGL animation almost always uses double-buffering.

antialiasing

A rendering technique that assigns colors to pixels based on the fraction of the pixel area that is covered by the primitive being rendered. Antialiased rendering reduces or eliminates the jaggies that result from aliased rendering. See also jaggies, rendering.

application-specific clipping

Clipping of primitives against planes in eye coordinates. The planes are specified by the application using glClipPlane. See also eye coordinates.