Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(197)

Side by Side Diff: third_party/webgl/extensions/OES_vertex_array_object/index.html

Issue 9360034: Remove everthing except conformance tests in the deps/third_party/webgl (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3 <html lang="en">
4 <head>
5 <meta http-equiv="content-type" content="text/html; charset=utf-8">
6 <title>WebGL OES_vertex_array_object Extension Specification</title>
7 <link rel="stylesheet" type="text/css" href="../../resources/webgl-extension .css" />
8 <link rel="stylesheet" type="text/css" href="../../resources/default.css" />
9 <script src="../../resources/jquery-1.3.2.min.js" type="text/javascript"></s cript>
10 </head>
11 <!--begin-logo-->
12 <div>
13 <a href="http://webgl.org/"><img alt=WebGL height=72 src="../../resources/ WebGL-Logo.png" width=156></a>
14 <div class=right>
15 <a href="http://khronos.org/"><img alt=Khronos height=60 src="../../reso urces/KhronosGroup-3D.png" width=220></a>
16 </div>
17 </div>
18 <!--end-logo-->
19
20 <h1>WebGL OES_vertex_array_object Extension Specification</h1>
21
22 <h2 class="no-toc">Name</h2>
23 <p> OES_vertex_array_object </p>
24
25 <h2 class="no-toc">Contact</h2>
26 <p> <a href="https://www.khronos.org/webgl/public-mailing-list/">WebGL worki ng group</a> (public_webgl 'at' khronos.org) </p>
27
28 <h2 class="no-toc">Contributors</h2>
29 <p> Members of the WebGL working group </p>
30
31 <h2 class="no-toc">Version</h2>
32 <p> Last modified date: January 27, 2011 <br>
33 Revision: 1
34 </p>
35
36 <h2 class="no-toc">Number</h2>
37 <p> WebGL extension #5 </p>
38
39 <h2 class="no-toc">Dependencies</h2>
40 <p> Written against the WebGL API 1.0 specification. </p>
41
42 <h2 class="no-toc">Overview</h2>
43 <p>
44 This extension exposes the
45 <a href="http://www.khronos.org/registry/gles/extensions/OES/OES_vertex_ar ray_object.txt">OES_vertex_array_object</a>
46 functionality to WebGL. Consult the above extension for all documentation, issues, and new
47 functions and enumerants.
48 </p>
49 <h2 class="no-toc">IDL</h2>
50 <p>
51 <pre class="idl">
52 module webgl {
53
54 interface WebGLVertexArrayObjectOES : WebGLObject {
55 };
56
57 interface OES_vertex_array_object {
58 const GLenum VERTEX_ARRAY_BINDING_OES = 0x85B5;
59
60 WebGLVertexArrayObjectOES createVertexArrayOES();
61 void deleteVertexArrayOES(WebGLVertexArrayObjectOES arrayObject);
62 GLboolean isVertexArrayOES(WebGLVertexArrayObjectOES arrayObject);
63 void bindVertexArrayOES(WebGLVertexArrayObjectOES arrayObject);
64 };
65
66 };
67 </pre>
68 </p>
69
70 <h2 class="no-toc">Revision History</h2>
71 <p>
72 Revision 1, 2011/01/27
73 <ul>
74 <li> Initial revision.
75 </ul>
76 </p>
77 </body>
78 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698