Definition: |
include pGUI.e
include opengl.e glShadeModel(integer mode) |
Description: |
The glShadeModel procedure selects flat or smooth shading.
mode: A symbolic value representing a shading technique. Accepted values are GL_FLAT and GL_SMOOTH. The default is GL_SMOOTH. If mode is neither of the above values, glGetError() will return GL_INVALID_ENUM. If this routine is called between glBegin and glEnd, glGetError() will return GL_INVALID_OPERATION. |
Remarks |
OpenGL primitives can have either flat or smooth shading. Smooth shading, the default, causes the computed colors of vertices to be interpolated as the primitive is rasterized, typically assigning different colors to each resulting pixel fragment. Flat shading selects the computed color of just one vertex and assigns it to all the pixel fragments generated by rasterizing a single primitive. In either case, the computed color of a vertex is the result of lighting, if lighting is enabled, or it is the current color at the time the vertex was specified, if lighting is disabled. Flat and smooth shading are indistinguishable for points. Counting vertices and primitives from one, starting when glBegin is issued, each flat-shaded line segment i is given the computed color of vertex i + 1, its second vertex. Counting similarly from one, each flat-shaded polygon is given the computed color of the vertex listed in the following table. This is the last vertex to specify the polygon in all cases except single polygons, where the first vertex specifies the flat-shaded color.
The following function retrieves information related to glShadeModel: glGet with argument GL_SHADE_MODEL |
See Also: |
glBegin,
glGetError,
xor_bits,
glEnd,
int_to_bits
//glBegin glColor //glEnd glLight glLightModel |