1GLPOINTSIZE(3G) [FIXME: manual] GLPOINTSIZE(3G)
2
3
4
6 glPointSize - specify the diameter of rasterized points
7
9 void glPointSize(GLfloat size);
10
12 size
13 Specifies the diameter of rasterized points. The initial value is
14 1.
15
17 glPointSize specifies the rasterized diameter of points. If point size
18 mode is disabled (see glEnable() with parameter GL_PROGRAM_POINT_SIZE),
19 this value will be used to rasterize points. Otherwise, the value
20 written to the shading language built-in variable gl_PointSize will be
21 used.
22
24 The point size specified by glPointSize is always returned when
25 GL_POINT_SIZE is queried. Clamping and rounding for points have no
26 effect on the specified value.
27
29 GL_INVALID_VALUE is generated if size is less than or equal to 0.
30
32 glGet() with argument GL_POINT_SIZE_RANGE
33
34 glGet() with argument GL_POINT_SIZE_GRANULARITY
35
36 glGet() with argument GL_POINT_SIZE
37
38 glGet() with argument GL_POINT_FADE_THRESHOLD_SIZE
39
40 glIsEnabled() with argument GL_PROGRAM_POINT_SIZE
41
43 ┌────────────┬───────────────────────────────────────────────────────────────────────┐
44 │ │ OpenGL Version │
45 ├────────────┼─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┤
46 │Function │ 2.0 │ 2.1 │ 3.0 │ 3.1 │ 3.2 │ 3.3 │ 4.0 │ 4.1 │ 4.2 │ 4.3 │ 4.4 │ 4.5 │
47 │/ │ │ │ │ │ │ │ │ │ │ │ │ │
48 │Feature │ │ │ │ │ │ │ │ │ │ │ │ │
49 │Name │ │ │ │ │ │ │ │ │ │ │ │ │
50 ├────────────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┤
51 │glPointSize │ ✔ │ ✔ │ ✔ │ ✔ │ ✔ │ ✔ │ ✔ │ ✔ │ ✔ │ ✔ │ ✔ │ ✔ │
52 └────────────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┘
53
55 glEnable(), glPointParameter()
56
58 Copyright © 1991-2006 Silicon Graphics, Inc. Copyright © 2010-2014
59 Khronos Group. This document is licensed under the SGI Free Software B
60 License. For details, see http://oss.sgi.com/projects/FreeB/.
61
63 Copyright © 1991-2006 Silicon Graphics, Inc.
64 Copyright © 2010-2014 Khronos Group
65
66
67
68[FIXME: source] 03/06/2019 GLPOINTSIZE(3G)