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

Unified Diff: third_party/webgl/extensions/template/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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/webgl/extensions/index.html ('k') | third_party/webgl/index.php » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/webgl/extensions/template/index.html
===================================================================
--- third_party/webgl/extensions/template/index.html (revision 121077)
+++ third_party/webgl/extensions/template/index.html (working copy)
@@ -1,173 +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 Extension Template</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 Extension Template</h1>
-
- <div class="nonnormative">
- <p>
- Comments in this extension template are highlighted in green. This entire section is one big
- comment.
- </p>
- <p>
- This template for WebGL extensions is derived from
- the <a href="http://www.opengl.org/registry/doc/template.txt">OpenGL extension template</a>.
- Refer to the OpenGL extension template for full documentation of the content that should be
- contained in the sections below. Because WebGL is fundamentally a Web API, its extensions
- are specified in HTML for easier hyperlinking.
- </p>
- <p>
- Because most WebGL extensions are expected to simply mirror existing OpenGL and OpenGL ES
- extensions, it is desirable to keep the WebGL extension specifications as small as possible
- and simply refer to the other specifications for the behavioral definitions.
- </p>
- </div>
-
- <h2 class="no-toc">Name</h2>
- <div class="nonnormative">
- <p>
- The name of the extension. This is also the string which is passed to
- the <code>WebGLRenderingContext</code> <code>getExtension</code> API to enable the
- extension. For example, if the extension name were <code>OES_texture_float</code>, then the
- extension would be fetched and enabled with a call
- to <code>getExtension("OES_texture_float")</code>.
- </p>
- <p>
- Per WebGL convention, the <code>GL_</code> prefix is dropped from all extension and enum names, and the
- <code>gl</code> prefix dropped from, and capitalization adjusted of, all function names.
- </p>
- </div>
-
- <h2 class="no-toc">Contact</h2>
-
- <div class="nonnormative">
- <p> The email address of the contact of the specification. Prefer to use 'at' instead of
- the <code>@</code> character to reduce spam. </p>
- </div>
-
- <h2 class="no-toc">Contributors</h2>
-
- <div class="nonnormative">
- <p> Names and email addresses of individuals who contributed to the development of the
- specification. </p>
- </div>
-
- <h2 class="no-toc">Version</h2>
-
- <div class="nonnormative">
- <p> Last modified date and revision number of this specification. Example: </p>
- <p>
- Last modified date: November 29, 2010 <br>
- Revision: 1
- </p>
- </div>
-
- <h2 class="no-toc">Number</h2>
-
- <div class="nonnormative">
- The number of the extension in the <a href="../">WebGL extension registry</a>.
- </div>
-
- <h2 class="no-toc">Dependencies</h2>
-
- <div class="nonnormative">
- <p>
- The WebGL specification version against which this extension is written. For example:
- </p>
- <p>
- Written against the WebGL API 1.0 specification.
- </p>
- </div>
-
- <h2 class="no-toc">Overview</h2>
-
- <div class="nonnormative">
- <p>
- A description of what this extension actually does. If this extension simply mirrors an OpenGL
- or OpenGL ES extension, it is recommended to simply link to that other extension's
- specification. For example:
- </p>
- <p>
- This extension exposes the
- <a href="http://www.khronos.org/registry/gles/extensions/OES/OES_texture_float.txt">OES_texture_float</a>
- functionality to WebGL. There are no WebGL-specific behavioral changes. Consult the above
- extension for all documentation, issues, and new functions and enumerants.
- </p>
- </div>
-
- <h2 class="no-toc">IDL</h2>
-
- <div class="nonnormative">
- <p>
- This section should contain the inline Web IDL for the extension, surrounded by the
- tags <code>&lt;pre class="idl"&gt;...&lt;/pre&gt;</code>. Enums and functions introduced by
- the extension should be specified as <code>const GLenum</code> and methods on the extension
- object. The extension IDL should be written assuming that the typedefs
- in <code><a href="../../specs/latest/webgl.idl">webgl.idl</a></code>
- and <code><a href="../../typedarray/specs/latest/typedarrays.idl">typedarrays.idl</a></code>
- have already been defined, and may implicitly reference other web platform specifications.
- </p>
- <p>
- </p>
- <p>
- Example contents for a hypothetical extension:
- </p>
-<pre class="idl">
-module webgl {
-
-interface OES_foo_bar {
- const GLenum NEW_ENUM = 0xF00;
-
- void doSomethingNew(GLenum state, GLuint value);
-}; // interface OES_foo_bar
-
-}; // module webgl
-</pre>
- </div>
-
- <h2 class="no-toc">IP Status</h2>
- <h2 class="no-toc">New Procedures and Functions</h2>
- <h2 class="no-toc">New Types</h2>
- <h2 class="no-toc">New Tokens</h2>
- <h2 class="no-toc">Additions to Chapters of the OpenGL ES 2.0 Specification</h2>
- <h2 class="no-toc">Dependencies on GL and ES profiles, versions, and other extensions</h2>
- <h2 class="no-toc">Errors</h2>
- <h2 class="no-toc">New State</h2>
- <h2 class="no-toc">New Implementation Dependent State</h2>
- <h2 class="no-toc">Sample Code</h2>
- <h2 class="no-toc">Conformance Tests</h2>
- <h2 class="no-toc">Issues</h2>
-
- <div class="nonnormative">
- Refer to the <a href="http://www.opengl.org/registry/doc/template.txt">OpenGL extension
- template</a> for a description of these sections. These sections should be eliminated for
- WebGL extensions simply mirroring OpenGL or OpenGL ES extensions.
- </div>
-
- <h2 class="no-toc">Revision History</h2>
-
- <div class="nonnormative">
- <p>
- Include important changes in the evolution of the extension. It's especially important to
- include this section if the extension is modified after a version has been shipped. Consult
- the <a href="http://www.opengl.org/registry/doc/template.txt">OpenGL extension template</a>
- for an example.
- </p>
- </div>
-</body>
-</html>
« no previous file with comments | « third_party/webgl/extensions/index.html ('k') | third_party/webgl/index.php » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698