1GLGETMINMAXPARAMETER(3G) GLGETMINMAXPARAMETER(3G)
2
3
4
6 glGetMinmaxParameterfv, glGetMinmaxParameteriv - get minmax parameters
7
8
10 void glGetMinmaxParameterfv( GLenum target,
11 GLenum pname,
12 GLfloat *params )
13 void glGetMinmaxParameteriv( GLenum target,
14 GLenum pname,
15 GLint *params )
16
17
19 target Must be GL_MINMAX.
20
21 pname The parameter to be retrieved. Must be one of GL_MINMAX_FORMAT
22 or GL_MINMAX_SINK.
23
24 params A pointer to storage for the retrieved parameters.
25
27 glGetMinmaxParameter retrieves parameters for the current minmax table
28 by setting pname to one of the following values:
29
30
31
32 ───────────────────────────────────────────────
33 Parameter Description
34 ───────────────────────────────────────────────
35 GL_MINMAX_FORMAT Internal of minmax table
36 GL_MINMAX_SINK Value of the sink parameter
37 ───────────────────────────────────────────────
38
39
41 glGetMinmaxParameter is present only if GL_ARB_imaging is returned when
42 glGetString is called with an argument of GL_EXTENSIONS.
43
45 GL_INVALID_ENUM is generated if target is not GL_MINMAX.
46
47 GL_INVALID_ENUM is generated if pname is not one of the allowable val‐
48 ues.
49
50 GL_INVALID_OPERATION is generated if glGetMinmaxParameter is executed
51 between the execution of glBegin and the corresponding execution of
52 glEnd.
53
55 glMinmax(3G), glGetMinmax(3G)
56
57
58
59 GLGETMINMAXPARAMETER(3G)