public enum TextureBufferInternalFormat extends Enum<TextureBufferInternalFormat> implements IEnumWithValue
| Enum Constant and Description |
|---|
ALPHA
Discards the red, green and blue components and reads the alpha component.
|
LUMINANCE
Each color component is a luminance component, alpha is 1.0.
|
LUMINANCE_ALPHA
Each component is a luminance/alpha component.
|
R11F_G11F_B10F
WebGL 2 only
|
R16F
WebGL 2 only
|
R32F
WebGL 2 only
|
R8
WebGL 2 only
|
R8UI
WebGL 2 only
|
RG16F
WebGL 2 only
|
RG16UI
WebGL 2 only
|
RG32F
WebGL 2 only
|
RG32UI
WebGL 2 only
|
RG8
WebGL 2 only
|
RG8UI
WebGL 2 only
|
RGB
Discards the alpha components and reads the red, green and blue components.
|
RGB10_A2
WebGL 2 only
|
RGB16F
WebGL 2 only
|
RGB32F
WebGL 2 only
|
RGB5_A1
WebGL 2 only
|
RGB565
WebGL 2 only
|
RGB8
WebGL 2 only
|
RGB8UI
WebGL 2 only
|
RGB9_E5
WebGL 2 only
|
RGBA
Red, green, blue and alpha components are read from the color buffer.
|
RGBA16F
WebGL 2 only
|
RGBA32F
WebGL 2 only
|
RGBA4
WebGL 2 only
|
RGBA8
WebGL 2 only
|
RGBA8UI
WebGL 2 only
|
SRGB8
WebGL 2 only
|
SRGB8_ALPHA8
WebGL 2 only
|
| Modifier and Type | Method and Description |
|---|---|
int |
value() |
static TextureBufferInternalFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextureBufferInternalFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOffromValue, transformForClientpublic static final TextureBufferInternalFormat ALPHA
public static final TextureBufferInternalFormat LUMINANCE
public static final TextureBufferInternalFormat LUMINANCE_ALPHA
public static final TextureBufferInternalFormat R11F_G11F_B10F
public static final TextureBufferInternalFormat R16F
public static final TextureBufferInternalFormat R32F
public static final TextureBufferInternalFormat R8
public static final TextureBufferInternalFormat R8UI
public static final TextureBufferInternalFormat RG16F
public static final TextureBufferInternalFormat RG16UI
public static final TextureBufferInternalFormat RG32F
public static final TextureBufferInternalFormat RG32UI
public static final TextureBufferInternalFormat RG8
public static final TextureBufferInternalFormat RG8UI
public static final TextureBufferInternalFormat RGB
public static final TextureBufferInternalFormat RGB10_A2
public static final TextureBufferInternalFormat RGB16F
public static final TextureBufferInternalFormat RGB32F
public static final TextureBufferInternalFormat RGB5_A1
public static final TextureBufferInternalFormat RGB565
public static final TextureBufferInternalFormat RGB8
public static final TextureBufferInternalFormat RGB8UI
public static final TextureBufferInternalFormat RGB9_E5
public static final TextureBufferInternalFormat RGBA
public static final TextureBufferInternalFormat RGBA16F
public static final TextureBufferInternalFormat RGBA32F
public static final TextureBufferInternalFormat RGBA4
public static final TextureBufferInternalFormat RGBA8
public static final TextureBufferInternalFormat RGBA8UI
public static final TextureBufferInternalFormat SRGB8
public static final TextureBufferInternalFormat SRGB8_ALPHA8
public static TextureBufferInternalFormat[] values()
for (TextureBufferInternalFormat c : TextureBufferInternalFormat.values()) System.out.println(c);
public static TextureBufferInternalFormat valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int value()
value in interface IEnumWithValueCopyright © 2018 Regenstrief Center for Biomedical Informatics. All rights reserved.