1GLRESETMINMAX(3G) OpenGL Manual GLRESETMINMAX(3G)
2
3
4
6 glResetMinmax - reset minmax table entries to initial values
7
9 void glResetMinmax(GLenum target);
10
12 target
13 Must be GL_MINMAX.
14
16 glResetMinmax resets the elements of the current minmax table to their
17 initial values: the ``maximum'' element receives the minimum possible
18 component values, and the ``minimum'' element receives the maximum
19 possible component values.
20
22 glResetMinmax is present only if ARB_imaging is returned when
23 glGetString() is called with an argument of GL_EXTENSIONS.
24
26 GL_INVALID_ENUM is generated if target is not GL_MINMAX.
27
28 GL_INVALID_OPERATION is generated if glResetMinmax is executed between
29 the execution of glBegin() and the corresponding execution of glEnd().
30
32 glMinmax()
33
35 Copyright © 1991-2006 Silicon Graphics, Inc. This document is licensed
36 under the SGI Free Software B License. For details, see
37 http://oss.sgi.com/projects/FreeB/.
38
40 opengl.org
41
42
43
44opengl.org 07/13/2018 GLRESETMINMAX(3G)