The WEBGL_lose_context extension is part of the WebGL API and exposes functions to simulate losing and restoring a WebGLRenderingContext.

MDN Reference

interface WEBGL_lose_context {
    loseContext(): void;
    restoreContext(): void;
}
Index

Methods

  • The WEBGL_lose_context.loseContext() method is part of the WebGL API and allows you to simulate losing the context of a WebGLRenderingContext context.

    MDN Reference

    Returns void

  • The WEBGL_lose_context.restoreContext() method is part of the WebGL API and allows you to simulate restoring the context of a WebGLRenderingContext object.

    MDN Reference

    Returns void