Index: third_party/webgl/extensions/OES_vertex_array_object/index.html |
=================================================================== |
--- third_party/webgl/extensions/OES_vertex_array_object/index.html (revision 121077) |
+++ third_party/webgl/extensions/OES_vertex_array_object/index.html (working copy) |
@@ -1,78 +0,0 @@ |
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" |
- "http://www.w3.org/TR/html4/strict.dtd"> |
-<html lang="en"> |
-<head> |
- <meta http-equiv="content-type" content="text/html; charset=utf-8"> |
- <title>WebGL OES_vertex_array_object Extension Specification</title> |
- <link rel="stylesheet" type="text/css" href="../../resources/webgl-extension.css" /> |
- <link rel="stylesheet" type="text/css" href="../../resources/default.css" /> |
- <script src="../../resources/jquery-1.3.2.min.js" type="text/javascript"></script> |
-</head> |
- <!--begin-logo--> |
- <div> |
- <a href="http://webgl.org/"><img alt=WebGL height=72 src="../../resources/WebGL-Logo.png" width=156></a> |
- <div class=right> |
- <a href="http://khronos.org/"><img alt=Khronos height=60 src="../../resources/KhronosGroup-3D.png" width=220></a> |
- </div> |
- </div> |
- <!--end-logo--> |
- |
- <h1>WebGL OES_vertex_array_object Extension Specification</h1> |
- |
- <h2 class="no-toc">Name</h2> |
- <p> OES_vertex_array_object </p> |
- |
- <h2 class="no-toc">Contact</h2> |
- <p> <a href="https://www.khronos.org/webgl/public-mailing-list/">WebGL working group</a> (public_webgl 'at' khronos.org) </p> |
- |
- <h2 class="no-toc">Contributors</h2> |
- <p> Members of the WebGL working group </p> |
- |
- <h2 class="no-toc">Version</h2> |
- <p> Last modified date: January 27, 2011 <br> |
- Revision: 1 |
- </p> |
- |
- <h2 class="no-toc">Number</h2> |
- <p> WebGL extension #5 </p> |
- |
- <h2 class="no-toc">Dependencies</h2> |
- <p> Written against the WebGL API 1.0 specification. </p> |
- |
- <h2 class="no-toc">Overview</h2> |
- <p> |
- This extension exposes the |
- <a href="http://www.khronos.org/registry/gles/extensions/OES/OES_vertex_array_object.txt">OES_vertex_array_object</a> |
- functionality to WebGL. Consult the above extension for all documentation, issues, and new |
- functions and enumerants. |
- </p> |
- <h2 class="no-toc">IDL</h2> |
- <p> |
-<pre class="idl"> |
-module webgl { |
- |
-interface WebGLVertexArrayObjectOES : WebGLObject { |
-}; |
- |
-interface OES_vertex_array_object { |
- const GLenum VERTEX_ARRAY_BINDING_OES = 0x85B5; |
- |
- WebGLVertexArrayObjectOES createVertexArrayOES(); |
- void deleteVertexArrayOES(WebGLVertexArrayObjectOES arrayObject); |
- GLboolean isVertexArrayOES(WebGLVertexArrayObjectOES arrayObject); |
- void bindVertexArrayOES(WebGLVertexArrayObjectOES arrayObject); |
-}; |
- |
-}; |
-</pre> |
- </p> |
- |
- <h2 class="no-toc">Revision History</h2> |
- <p> |
- Revision 1, 2011/01/27 |
- <ul> |
- <li> Initial revision. |
- </ul> |
- </p> |
-</body> |
-</html> |