1GLGETMINMAXPARAMETER(3G) OpenGL Manual GLGETMINMAXPARAMETER(3G)
2
3
4
6 glGetMinmaxParameter - get minmax parameters
7
9 void glGetMinmaxParameterfv(GLenum target, GLenum pname,
10 GLfloat * params);
11
12 void glGetMinmaxParameteriv(GLenum target, GLenum pname,
13 GLint * params);
14
16 target
17 Must be GL_MINMAX.
18
19 pname
20 The parameter to be retrieved. Must be one of GL_MINMAX_FORMAT or
21 GL_MINMAX_SINK.
22
23 params
24 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 │ Parameter │ Description │
33 │ │ │
34 ├──────────────────────────────────┼─────────────────────────────────────┤
35 │GL_MINMAX_FORMAT │ Internal format of minmax table │
36 ├──────────────────────────────────┼─────────────────────────────────────┤
37 │GL_MINMAX_SINK │ Value of the sink parameter │
38 └──────────────────────────────────┴─────────────────────────────────────┘
39
41 glGetMinmaxParameter is present only if 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
48 values.
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(), glGetMinmax()
56
58 Copyright © 1991-2006 Silicon Graphics, Inc. This document is licensed
59 under the SGI Free Software B License. For details, see
60 http://oss.sgi.com/projects/FreeB/.
61
63 opengl.org
64
65
66
67opengl.org 07/13/2018 GLGETMINMAXPARAMETER(3G)