GLAPI/glPointParameter: Difference between revisions
m Renaming category: 'GL 4 API Rasterization' to 'Core API Ref Rasterization'. |
JeffKhronos (talk | contribs) |
||
(3 intermediate revisions by one other user not shown) | |||
Line 8: | Line 8: | ||
== Function Definition == | == Function Definition == | ||
void '''glPointParameterf'''(GLenum | void '''glPointParameterf'''(GLenum {{param|pname}}, GLfloat {{param|param}}); | ||
void '''glPointParameteri'''(GLenum | void '''glPointParameteri'''(GLenum {{param|pname}}, GLint {{param|param}}); | ||
; pname | ; pname | ||
: Specifies a single-valued point parameter. {{ | : Specifies a single-valued point parameter. {{enum|GL_POINT_FADE_THRESHOLD_SIZE}}, and {{enum|GL_POINT_SPRITE_COORD_ORIGIN}} are accepted. | ||
; param | ; param | ||
: Specifies the value that | : Specifies the value that {{param|pname}} will be set to. | ||
== Function Definition == | == Function Definition == | ||
void '''glPointParameterfv'''(GLenum | void '''glPointParameterfv'''(GLenum {{param|pname}}, const GLfloat * {{param|params}}); | ||
void '''glPointParameteriv'''(GLenum | void '''glPointParameteriv'''(GLenum {{param|pname}}, const GLint * {{param|params}}); | ||
; pname | ; pname | ||
: Specifies a point parameter. {{ | : Specifies a point parameter. {{enum|GL_POINT_FADE_THRESHOLD_SIZE}}, and {{enum|GL_POINT_SPRITE_COORD_ORIGIN}} are accepted. | ||
; params | ; params | ||
: Specifies the value to be assigned to | : Specifies the value to be assigned to {{param|pname}}.. | ||
== Description == | == Description == | ||
The following values are accepted for | The following values are accepted for {{param|pname}}: | ||
; {{ | ; {{enum|GL_POINT_FADE_THRESHOLD_SIZE}} | ||
: | : | ||
{{param|params}} is a single floating-point value that specifies the threshold value to which point sizes are clamped if they exceed the specified value. The default value is 1.0. | |||
; {{ | ; {{enum|GL_POINT_SPRITE_COORD_ORIGIN}} | ||
: | : | ||
{{param|params}} is a single enum specifying the point sprite texture coordinate origin, either {{enum|GL_LOWER_LEFT}} or {{enum|GL_UPPER_LEFT}}. The default value is {{enum|GL_UPPER_LEFT}}. | |||
== Errors == | == Errors == | ||
{{ | {{enum|GL_INVALID_VALUE}} is generated if the value specified for {{enum|GL_POINT_FADE_THRESHOLD_SIZE}} is less than zero. | ||
{{ | {{enum|GL_INVALID_ENUM}} is generated If the value specified for {{enum|GL_POINT_SPRITE_COORD_ORIGIN}} is not {{enum|GL_LOWER_LEFT}} or {{enum|GL_UPPER_LEFT}}. | ||
== Associated Gets == | == Associated Gets == | ||
{{apifunc|glGet}} with argument {{enum|GL_POINT_FADE_THRESHOLD_SIZE}} | |||
{{apifunc|glGet}} with argument {{enum|GL_POINT_SPRITE_COORD_ORIGIN}} | |||
== See Also == | == See Also == | ||
{{apifunc|glPointSize}} | |||
== Copyright == | == Copyright == | ||
Copyright © 1991-2006 Silicon Graphics, Inc. Copyright © 2010 Khronos Group. This document is licensed under the SGI Free Software B License. For details, see [ | Copyright © 1991-2006 Silicon Graphics, Inc. Copyright © 2010 Khronos Group. This document is licensed under the SGI Free Software B License. For details, see [https://khronos.org/registry/OpenGL-Refpages/LICENSES/LicenseRef-FreeB.txt LicenseRef-FreeB]. | ||
[[Category:Core API Ref Rasterization|PointParameter]] | [[Category:Core API Ref Rasterization|PointParameter]] | ||
[[Category:Core API Reference|PointParameter]] |
Latest revision as of 21:06, 5 February 2021
Core in version | 4.6 | |
---|---|---|
Core since version | 1.4 |
glPointParameter: specify point parameters
Function Definition
void glPointParameterf(GLenum pname, GLfloat param); void glPointParameteri(GLenum pname, GLint param);
- pname
- Specifies a single-valued point parameter. GL_POINT_FADE_THRESHOLD_SIZE, and GL_POINT_SPRITE_COORD_ORIGIN are accepted.
- param
- Specifies the value that pname will be set to.
Function Definition
void glPointParameterfv(GLenum pname, const GLfloat * params); void glPointParameteriv(GLenum pname, const GLint * params);
- pname
- Specifies a point parameter. GL_POINT_FADE_THRESHOLD_SIZE, and GL_POINT_SPRITE_COORD_ORIGIN are accepted.
- params
- Specifies the value to be assigned to pname..
Description
The following values are accepted for pname:
- GL_POINT_FADE_THRESHOLD_SIZE
params is a single floating-point value that specifies the threshold value to which point sizes are clamped if they exceed the specified value. The default value is 1.0.
- GL_POINT_SPRITE_COORD_ORIGIN
params is a single enum specifying the point sprite texture coordinate origin, either GL_LOWER_LEFT or GL_UPPER_LEFT. The default value is GL_UPPER_LEFT.
Errors
GL_INVALID_VALUE is generated if the value specified for GL_POINT_FADE_THRESHOLD_SIZE is less than zero.
GL_INVALID_ENUM is generated If the value specified for GL_POINT_SPRITE_COORD_ORIGIN is not GL_LOWER_LEFT or GL_UPPER_LEFT.
Associated Gets
glGet with argument GL_POINT_FADE_THRESHOLD_SIZE
glGet with argument GL_POINT_SPRITE_COORD_ORIGIN
See Also
Copyright
Copyright © 1991-2006 Silicon Graphics, Inc. Copyright © 2010 Khronos Group. This document is licensed under the SGI Free Software B License. For details, see LicenseRef-FreeB.