Struct webgl_stdweb::WEBGL_compressed_texture_atc [] [src]

pub struct WEBGL_compressed_texture_atc(_);

Extension

This extension exposes the compressed texture formats defined in the AMD_compressed_ATC_texture OpenGL extension to WebGL. Compression formats COMPRESSED_RGB_ATC_WEBGL, COMPRESSED_RGBA_ATC_EXPLICIT_ALPHA_WEBGL, and COMPRESSED_RGBA_ATC_INTERPOLATED_ALPHA_WEBGL may be passed to the compressedTexImage2D and compressedTexSubImage2D entry points. These formats correspond to the 3 formats defined in the AMD_compressed_ATC_texture OpenGL extension. Although the enum names are changed, their numeric values are the same. The correspondence is given by this table: WebGL format enum OpenGL format enum Numeric value COMPRESSED_RGB_ATC_WEBGL ATC_RGB_AMD 0x8C92 COMPRESSED_RGBA_ATC_EXPLICIT_ALPHA_WEBGL ATC_RGBA_EXPLICIT_ALPHA_AMD 0x8C93 COMPRESSED_RGBA_ATC_INTERPOLATED_ALPHA_WEBGL ATC_RGBA_INTERPOLATED_ALPHA_AMD 0x87EE Calling getParameter with the argument COMPRESSED_TEXTURE_FORMATS will include the 3 formats from this specification.

The following format-specific restrictions must be enforced: COMPRESSED_RGB_ATC_WEBGL

The byteLength of the ArrayBufferView, pixels, passed to compressedTexImage2D, must be equal to the following number of bytes:

floor((width + 3) / 4) * floor((height + 3) / 4) * 8

If it is not, an INVALID_VALUE error is generated. COMPRESSED_RGBA_ATC_EXPLICIT_ALPHA_WEBGL COMPRESSED_RGBA_ATC_INTERPOLATED_ALPHA_WEBGL

The byteLength of the ArrayBufferView, pixels, passed to compressedTexImage2D, must be equal to the following number of bytes:

floor((width + 3) / 4) * floor((height + 3) / 4) * 16

If it is not, an INVALID_VALUE error is generated.

Methods

impl WEBGL_compressed_texture_atc
[src]

COMPRESSED_RGBA_ATC_EXPLICIT_ALPHA_WEBGL: GLenum = 35987

COMPRESSED_RGBA_ATC_INTERPOLATED_ALPHA_WEBGL: GLenum = 34798

COMPRESSED_RGB_ATC_WEBGL: GLenum = 35986

Trait Implementations

impl Debug for WEBGL_compressed_texture_atc
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for WEBGL_compressed_texture_atc
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl AsRef<Reference> for WEBGL_compressed_texture_atc
[src]

[src]

Performs the conversion.

impl ReferenceType for WEBGL_compressed_texture_atc
[src]

[src]

Converts a given reference into a concrete reference-like wrapper. Doesn't do any type checking; highly unsafe to use! Read more

impl From<WEBGL_compressed_texture_atc> for Reference
[src]

[src]

Performs the conversion.

impl TryFrom<WEBGL_compressed_texture_atc> for Reference
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl TryFrom<Reference> for WEBGL_compressed_texture_atc
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl<'_r> TryFrom<&'_r Reference> for WEBGL_compressed_texture_atc
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl TryFrom<Value> for WEBGL_compressed_texture_atc
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl<'_r> TryFrom<&'_r Value> for WEBGL_compressed_texture_atc
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl JsSerialize for WEBGL_compressed_texture_atc
[src]

impl JsSerializeOwned for WEBGL_compressed_texture_atc
[src]

[src]

[src]

impl<'_r> JsSerializeOwned for &'_r WEBGL_compressed_texture_atc
[src]

[src]

[src]

impl InstanceOf for WEBGL_compressed_texture_atc
[src]

[src]

Checks whenever a given Reference if of type Self.

impl Extension for WEBGL_compressed_texture_atc
[src]

NAME: &'static str = "WEBGL_compressed_texture_atc"

Auto Trait Implementations