Class EXTSRGB
- java.lang.Object
-
- org.lwjgl.opengles.EXTSRGB
-
public final class EXTSRGB extends java.lang.ObjectNative bindings to the EXT_sRGB extension.The sRGB color space is based on typical (non-linear) response of the human eye. It has been standardized by the International Electrotechnical Commission (IEC) as IEC 61966-2-1. The transfer function of sRGB roughly corresponds to a power function with a gamma of 2.2.
FRAMEBUFFERS
OpenGL assumes framebuffer color components are stored in a linear color space. In particular, framebuffer blending is a linear operation.
This extension adds a framebuffer capability for sRGB framebuffer update and blending. When blending is disabled but the new sRGB updated mode is enabled (assume the framebuffer supports the capability), high-precision linear color component values for red, green, and blue generated by fragment coloring are encoded for sRGB prior to being written into the framebuffer. When blending is enabled along with the new sRGB update mode, red, green, and blue framebuffer color components are treated as sRGB values that are converted to linear color values, blended with the high- precision color values generated by fragment coloring, and then the blend result is encoded for sRGB just prior to being written into the framebuffer.
TEXTURES
Conventional texture formats assume a linear color space. So for a conventional internal texture format such as GL_RGB8, the 256 discrete values for each 8-bit color component map linearly and uniformly to the [0,1] range.
-
-
Field Summary
Fields Modifier and Type Field and Description static intGL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXTAccepted by thepnameparameter of GetFramebufferAttachmentParameteriv.static intGL_SRGB_ALPHA_EXT
GL_SRGB_EXTAccepted by theformatandinternalformatparameter of TexImage2D, and TexImage3DOES.static intGL_SRGB8_ALPHA8_EXTAccepted by theinternalformatparameter of RenderbufferStorage.
-
-
-
Field Detail
-
GL_SRGB_EXT
public static final int GL_SRGB_EXT
Accepted by theformatandinternalformatparameter of TexImage2D, and TexImage3DOES. These are also accepted byformatparameter of TexSubImage2D and TexSubImage3DOES.- See Also:
- Constant Field Values
-
GL_SRGB_ALPHA_EXT
public static final int GL_SRGB_ALPHA_EXT
Accepted by theformatandinternalformatparameter of TexImage2D, and TexImage3DOES. These are also accepted byformatparameter of TexSubImage2D and TexSubImage3DOES.- See Also:
- Constant Field Values
-
GL_SRGB8_ALPHA8_EXT
public static final int GL_SRGB8_ALPHA8_EXT
Accepted by theinternalformatparameter of RenderbufferStorage.- See Also:
- Constant Field Values
-
GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT
public static final int GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT
Accepted by thepnameparameter of GetFramebufferAttachmentParameteriv.- See Also:
- Constant Field Values
-
-