Index: third_party/webgl/extensions/OES_standard_derivatives/index.html |
=================================================================== |
--- third_party/webgl/extensions/OES_standard_derivatives/index.html (revision 121077) |
+++ third_party/webgl/extensions/OES_standard_derivatives/index.html (working copy) |
@@ -1,87 +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_standard_derivatives 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_standard_derivatives Extension Specification</h1> |
- |
- <h2 class="no-toc">Name</h2> |
- <p> OES_standard_derivatives </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 13, 2010 <br> |
- Revision: 1 |
- </p> |
- |
- <h2 class="no-toc">Number</h2> |
- <p> WebGL extension #4 </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_standard_derivatives.txt">OES_standard_derivatives</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> |
- <p> |
- When this extension is enabled: |
- <ul> |
- <li> The <code>hint</code> entry point accepts <code>FRAGMENT_SHADER_DERIVATIVE_HINT_OES</code> |
- as a target and the <code>getParameter</code> entry point accepts it as a pname. |
- <li> The built-in functions <code>dFdx()</code>, <code>dFdy()</code>, and <code>fwidth()</code> |
- are available in fragment shaders if the following directive is added to the shader: |
-<pre> |
-#extension GL_OES_standard_derivatives : enable |
-</pre> |
- <li> The following macro definition is available: |
-<pre> |
-#define GL_OES_standard_derivatives 1 |
-</pre> |
- </ul> |
- </p> |
- |
- <h2 class="no-toc">IDL</h2> |
- <p> |
-<pre class="idl"> |
-module webgl { |
- |
-interface OES_standard_derivatives { |
- const GLenum FRAGMENT_SHADER_DERIVATIVE_HINT_OES = 0x8B8B; |
-}; |
- |
-}; |
-</pre> |
- </p> |
- |
- <h2 class="no-toc">Revision History</h2> |
- <p> |
- Revision 1, 2010/01/13 |
- <ul> |
- <li> Initial revision. |
- </ul> |
- </p> |
-</body> |
-</html> |