Constants¶
OpenGL constants definitions.
Overview¶
Typical use cases:
Defining OpenGL constants for use in graphics programming
Header¶
<RaeptorCogs/GAPI/GL/Constants.hpp>
Metadata¶
- Author
Estorc
- Version
v1.0
- Copyright
Copyright (c) 2025 Estorc MIT License.
Types¶
Type |
Description |
|---|---|
|
GL enum definition. |
|
GLint definition. |
|
GLuint definition. |
Variables¶
-
unsigned int GL_LINEAR = 0x2601¶
GL texture linear filtering mode constant.
Linear filtering mode for texture sampling in OpenGL.
-
unsigned int GL_LINEAR_MIPMAP_LINEAR = 0x2703¶
GL texture mipmap linear filtering mode constant.
Linear mipmap filtering mode for texture sampling in OpenGL.
-
unsigned int GL_LINEAR_MIPMAP_NEAREST = 0x2701¶
GL texture mipmap nearest filtering mode constant.
Nearest mipmap filtering mode for texture sampling in OpenGL.