Provided by: opengl-4-man-doc_1.0~svn33624-1_all bug

NAME

       glPointParameter - specify point parameters

C SPECIFICATION


       void glPointParameterf(GLenum pname, GLfloat param);

       void glPointParameteri(GLenum pname, GLint param);

       void glPointParameterfv(GLenum pname, const GLfloat * params);

       void glPointParameteriv(GLenum pname, const GLint * params);

PARAMETERS

       pname
           Specifies a single-valued point parameter.  GL_POINT_FADE_THRESHOLD_SIZE, and
           GL_POINT_SPRITE_COORD_ORIGIN are accepted.

       param
           For glPointParameterf and glPointParameteri, specifies the value that pname will be set to.

       params
           For glPointParameterfv and glPointParameteriv, specifies a pointer to an array where the value or
           values to be assigned to pname are stored.

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

VERSION SUPPORT

       ┌────────────────────┬───────────────────────────────────────────────────────────────────────┐
       │                    │                OpenGL Version                                         │
       ├────────────────────┼─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┤
       │ Function2.02.13.03.13.23.34.04.14.24.34.44.5 │
       │ /                  │     │     │     │     │     │     │     │     │     │     │     │     │
       │ Feature            │     │     │     │     │     │     │     │     │     │     │     │     │
       │ Name               │     │     │     │     │     │     │     │     │     │     │     │     │
       ├────────────────────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┤
       │ glPointParameterf  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │
       ├────────────────────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┤
       │ glPointParameterfv │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │
       ├────────────────────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┤
       │ glPointParameteri  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │
       ├────────────────────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┤
       │ glPointParameteriv │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │
       └────────────────────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┘

SEE ALSO

       glPointSize()

COPYRIGHT

       Copyright © 1991-2006 Silicon Graphics, Inc. Copyright © 2010-2014 Khronos Group. This document is
       licensed under the SGI Free Software B License. For details, see http://oss.sgi.com/projects/FreeB/.

COPYRIGHT

       Copyright © 1991-2006 Silicon Graphics, Inc.
       Copyright © 2010-2014 Khronos Group

[FIXME: source]                                    01/03/2018                               GLPOINTPARAMETER(3G)