tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

OES_vertex_array_object.idl (838B)


      1 // GENERATED CONTENT - DO NOT EDIT
      2 // Content was automatically extracted by Reffy into webref
      3 // (https://github.com/w3c/webref)
      4 // Source: WebGL OES_vertex_array_object Khronos Ratified Extension Specification (https://registry.khronos.org/webgl/extensions/OES_vertex_array_object/)
      5 
      6 [Exposed=(Window,Worker), LegacyNoInterfaceObject]
      7 interface WebGLVertexArrayObjectOES : WebGLObject {
      8 };
      9 
     10 [Exposed=(Window,Worker), LegacyNoInterfaceObject]
     11 interface OES_vertex_array_object {
     12    const GLenum VERTEX_ARRAY_BINDING_OES = 0x85B5;
     13 
     14    WebGLVertexArrayObjectOES createVertexArrayOES();
     15    undefined deleteVertexArrayOES(WebGLVertexArrayObjectOES? arrayObject);
     16    [WebGLHandlesContextLoss] GLboolean isVertexArrayOES(WebGLVertexArrayObjectOES? arrayObject);
     17    undefined bindVertexArrayOES(WebGLVertexArrayObjectOES? arrayObject);
     18 };