[][src]Struct ugli_webgl::WEBGL_lose_context

pub struct WEBGL_lose_context(_);

Extension

This extension exposes new functions which simulate losing and restoring the WebGL context, even on platforms where the context can never be lost. Consult the WebGL specification for documentation about the webglcontextlost and webglcontextrestored events.

When this extension is enabled:

  • loseContext and restoreContext are allowed to generate INVALID_OPERATION errors even when the context is lost.

Note that this extension is not disconnected from the WebGLRenderingContext if that object loses its context as described in "The Context Lost Event" of the WebGL specification, either through use of this API or via actual circumstances such as a system failure.

Methods

impl WEBGL_lose_context[src]

pub fn lose_context(&self)[src]

When this function is called and the context is not lost, simulate losing the context so as to trigger the steps described in the WebGL spec for handling context lost. The context will remain in the lost state according to the WebGL specification until restoreContext() is called. If the context is already lost when this function is called, generate an INVALID_OPERATION error.

Implementations should destroy the underlying graphics context and all graphics resources when this method is called. This is the recommended mechanism for applications to programmatically halt their use of the WebGL API.

pub fn restore_context(&self)[src]

When this function is called while the context is lost, and the conditions defined by the WebGL specification for restoring the context are met, simulate the context being restored so as to trigger the steps described in the WebGL spec for handling the context being restored. If the context is already restored when this function is called, or if the conditions in the WebGL specification for restoring the context are not satisfied, or if the context was not lost via loseContext(), generate an INVALID_OPERATION error.

Trait Implementations

impl AsRef<Reference> for WEBGL_lose_context[src]

impl Clone for WEBGL_lose_context[src]

impl Debug for WEBGL_lose_context[src]

impl Extension for WEBGL_lose_context[src]

impl From<WEBGL_lose_context> for Reference[src]

impl InstanceOf for WEBGL_lose_context[src]

impl JsSerialize for WEBGL_lose_context[src]

impl JsSerializeOwned for WEBGL_lose_context[src]

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

impl ReferenceType for WEBGL_lose_context[src]

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

type Error = ConversionError

The type returned in the event of a conversion error.

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

type Error = ConversionError

The type returned in the event of a conversion error.

impl TryFrom<Reference> for WEBGL_lose_context[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl TryFrom<Value> for WEBGL_lose_context[src]

type Error = ConversionError

The type returned in the event of a conversion error.

impl TryFrom<WEBGL_lose_context> 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.