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

Side by Side Diff: conformance/more/index.html

Issue 41503006: Add ToT WebGL conformance tests : part 8 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/webgl/sdk/tests/
Patch Set: Created 7 years, 2 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
Property Changes:
Added: svn:eol-style
## -0,0 +1 ##
+LF
\ No newline at end of property
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <!--
6
7 /*
8 ** Copyright (c) 2012 The Khronos Group Inc.
9 **
10 ** Permission is hereby granted, free of charge, to any person obtaining a
11 ** copy of this software and/or associated documentation files (the
12 ** "Materials"), to deal in the Materials without restriction, including
13 ** without limitation the rights to use, copy, modify, merge, publish,
14 ** distribute, sublicense, and/or sell copies of the Materials, and to
15 ** permit persons to whom the Materials are furnished to do so, subject to
16 ** the following conditions:
17 **
18 ** The above copyright notice and this permission notice shall be included
19 ** in all copies or substantial portions of the Materials.
20 **
21 ** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 ** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 ** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
24 ** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
25 ** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
26 ** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
27 ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
28 */
29
30 -->
31 <title>WebGL tests</title>
32 </head>
33 <body>
34
35 <h1>Tests for the WebGL canvas context</h1>
36
37 <h2>These tests are intended to serve the following purposes:</h2>
38 <ul>
39 <li>Assert spec conformance (so that WebGL pages work the same across brow sers and hardware)</li>
40 <li>Check the safety of the GL binding (bounds checking, same origin polic y)</li>
41 <li>Provide performance numbers for developers</li>
42 </ul>
43
44 <h2>Test runners</h2>
45 <ul>
46 <li><a href="all_tests_linkonly.html">Run tests manually</a></li>
47 <li><a href="all_tests.html">Run all tests in parallel</a></li>
48 <li><a href="all_tests_sequential.html">Run all tests sequentially</a></li >
49 </ul>
50
51
52 <h2>Demos</h2>
53 <ul>
54 <li><a href="demos/opengl_web.html">OpenGL for the web</a> (requires worki ng FBOs and null textures or using canvases as textures)</li>
55 <li><a href="demos/video.html">Green screen video demo with a color remapp ing filter</a> (requires loading &lt;video> to texture with texImage2D)</li>
56 </ul>
57
58 <h2>Running the tests</h2>
59
60 <ol>
61 <li><a href="http://learningwebgl.com/blog/?p=11">Install a browser with W ebGL support</a></li>
62 <li>Open one of the test runners linked above in your browser.</li>
63 <li>For more control over the tests, go the <a href="http://github.com/kig /canvas3d-tests">GitHub page</a>, see the readme, and clone the repo.</li>
64 </ol>
65
66 <h2>Want to contribute?</h2>
67
68 <p>See the <a href="README.md">README</a>.</p>
69 <p>See the <a href="http://github.com/kig/canvas3d-tests">GitHub page</a>.</ p>
70 <p>Mail me at <a href="mailto:ilmari.heikkinen@gmail.com">ilmari.heikkinen@g mail.com</a></p>
71
72
73 <h2>For more information on WebGL</h2>
74
75 <ul>
76 <li><a href="http://planet-webgl.org">Planet WebGL</a></li>
77 <li><a href="http://learningwebgl.com">Learning WebGL</a></li>
78 <li><a href="http://www.khronos.org/message_boards/viewforum.php?f=34">Web GL on Khronos Message Boards</a></li>
79 </ul>
80
81 <h2>Developer links</h2>
82 <ul>
83 <li><a href="https://bugzilla.mozilla.org/buglist.cgi?quicksearch=webgl">W ebGL on Mozilla Bugzilla</a></li>
84 <li><a href="https://bugzilla.webkit.org/buglist.cgi?quicksearch=webgl">We bGL on WebKit Bugzilla</a></li>
85 <li><a href="http://code.google.com/p/chromium/issues/list?q=label:3D-WebG L">WebGL on Chromium Bugzilla</a></li>
86 </ul>
87
88
89 <h2>License</h2>
90
91 <p>
92 These tests are released under the BSD license. The images and videos used in the tests are the respective property of their authors.
93 </p>
94
95 </body>
96 </html>
OLDNEW
« no previous file with comments | « conformance/more/glsl/unusedAttribsUniforms.html ('k') | conformance/more/performance/CPUvsGPU.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698