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

Side by Side Diff: third_party/webgl/extensions/OES_texture_half_float/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_texture_half_float 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_texture_half_float Extension Specification</h1>
21
22 <h2 class="no-toc">Name</h2>
23 <p> OES_texture_half_float </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: November 29, 2010 <br>
33 Revision: 1
34 </p>
35
36 <h2 class="no-toc">Number</h2>
37 <p> WebGL extension #2 </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_texture_f loat.txt">OES_texture_half_float</a>
46 functionality to WebGL. There are no WebGL-specific behavioral changes. C onsult the above
47 extension for all documentation, issues, and new functions and enumerants.
48 </p>
49
50 <h2 class="no-toc">IDL</h2>
51 <p>
52 <pre class="idl">
53 module webgl {
54
55 interface OES_texture_half_float {
56 const GLenum HALF_FLOAT_OES = 0x8D61;
57 };
58
59 };
60 </pre>
61 </p>
62
63 <h2 class="no-toc">Revision History</h2>
64 <p>
65 Revision 1, 2010/11/29
66 <ul>
67 <li> Initial revision.
68 </ul>
69 </p>
70 </body>
71 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698