text
stringlengths
0
8.81k
See:
PostProcessStage
constant PixelFormat : number
engine/Source/Core/PixelFormat.js 9
The format of a pixel, i.e., the number of components it has and what they represent.
Properties:
Name
Type
Description
DEPTH_COMPONENT
number
A pixel format containing a depth value.
DEPTH_STENCIL
number
A pixel format containing a depth and stencil value, most often used with PixelDatatype.UNSIGNED_INT_24_8.
ALPHA
number
A pixel format containing an alpha channel.
RED
number
A pixel format containing a red channel
RG
number
A pixel format containing red and green channels.
RGB
number
A pixel format containing red, green, and blue channels.
RGBA
number
A pixel format containing red, green, blue, and alpha channels.
LUMINANCE
number
A pixel format containing a luminance (intensity) channel.
LUMINANCE_ALPHA
number
A pixel format containing luminance (intensity) and alpha channels.
RGB_DXT1
number