A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/en-US/docs/Web/API/EXT_sRGB below:

EXT_sRGB extension - Web APIs

Constants

This extension exposes the following constants, which can be used in the texImage2D(), texSubImage2D(), renderbufferStorage() and getFramebufferAttachmentParameter() methods.

ext.SRGB_EXT

Unsized sRGB format that leaves the precision up to the driver.

ext.SRGB_ALPHA_EXT

Unsized sRGB format with unsized alpha component.

ext.SRGB8_ALPHA8_EXT

Sized (8-bit) sRGB and alpha formats.

ext.FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT

Returns the framebuffer color encoding (gl.LINEAR or ext.SRGB_EXT).

Examples
const ext = gl.getExtension("EXT_sRGB");

const texture = gl.createTexture();
gl.bindTexture(gl.TEXTURE_2D, texture);

gl.texImage2D(
  gl.TEXTURE_2D,
  0,
  ext.SRGB_EXT,
  512,
  512,
  0,
  ext.SRGB_EXT,
  gl.UNSIGNED_BYTE,
  image,
);
Specifications Browser compatibility

Loading…

See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.5