[][src]Struct ugli_webgl::WEBGL_compressed_texture_etc1

pub struct WEBGL_compressed_texture_etc1(_);

Extension

This extension exposes the compressed texture format defined in the OES_compressed_ETC1_RGB8_texture OpenGL ES extension to WebGL. Compression format COMPRESSED_RGB_ETC1_WEBGL may be passed to the compressedTexImage2D entry point. This format correspond to the format defined in the OES_compressed_ETC1_RGB8_texture OpenGL ES extension. Although the enum name is changed, the numeric value is the same. The correspondence is given by this table: WebGL format enum OpenGL format enum Numeric value COMPRESSED_RGB_ETC1_WEBGL ETC1_RGB8_OES 0x8D64 Calling getParameter with the argument COMPRESSED_TEXTURE_FORMATS will include the format from this specification.

The following format-specific restrictions must be enforced: COMPRESSED_RGB_ETC1_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.

Methods

impl WEBGL_compressed_texture_etc1[src]

Trait Implementations

impl AsRef<Reference> for WEBGL_compressed_texture_etc1[src]

impl Clone for WEBGL_compressed_texture_etc1[src]

impl Debug for WEBGL_compressed_texture_etc1[src]

impl Extension for WEBGL_compressed_texture_etc1[src]

impl From<WEBGL_compressed_texture_etc1> for Reference[src]

impl InstanceOf for WEBGL_compressed_texture_etc1[src]

impl JsSerialize for WEBGL_compressed_texture_etc1[src]

impl JsSerializeOwned for WEBGL_compressed_texture_etc1[src]

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

impl ReferenceType for WEBGL_compressed_texture_etc1[src]

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

type Error = ConversionError

The type returned in the event of a conversion error.

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

type Error = ConversionError

The type returned in the event of a conversion error.

impl TryFrom<Reference> for WEBGL_compressed_texture_etc1[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl TryFrom<Value> for WEBGL_compressed_texture_etc1[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl TryFrom<WEBGL_compressed_texture_etc1> for Reference[src]

type Error = Void

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.