logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

glClampColor - specify whether data read via glReadPixels() should be clamped

Associated Gets

glGet() with argument GL_CLAMP_READ_COLOR.

C Specification

voidglClampColor(GLenumtarget,GLenumclamp);

Description

glClampColor controls color clamping that is performed during glReadPixels().  target must be
       GL_CLAMP_READ_COLOR. If clamp is GL_TRUE, read color clamping is enabled; if clamp is GL_FALSE, read
       color clamping is disabled. If clamp is GL_FIXED_ONLY, read color clamping is enabled only if the
       selected read buffer has fixed point components and disabled otherwise.

Errors

GL_INVALID_ENUM is generated if target is not GL_CLAMP_READ_COLOR.

       GL_INVALID_ENUM is generated if clamp is not GL_TRUE or GL_FALSE.

Name

       glClampColor - specify whether data read via glReadPixels() should be clamped

Parameters

target
           Target for color clamping.  target must be GL_CLAMP_READ_COLOR.

       clamp
           Specifies whether to apply color clamping.  clamp must be GL_TRUE or GL_FALSE.

See Also

Version Support

       ┌──────────────┬───────────────────────────────────────────────────────────────────────┐
       │              │                OpenGLVersion                                         │
       ├──────────────┼─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┤
       │ Function2.02.13.03.13.23.34.04.14.24.34.44.5 │
       │ /            │     │     │     │     │     │     │     │     │     │     │     │     │
       │ Feature      │     │     │     │     │     │     │     │     │     │     │     │     │
       │ Name         │     │     │     │     │     │     │     │     │     │     │     │     │
       ├──────────────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┤
       │ glClampColor │  -  │  -  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │
       └──────────────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┘

See Also