index.html (2819B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <!-- 6 Copyright (c) 2019 The Khronos Group Inc. 7 Use of this source code is governed by an MIT-style license that can be 8 found in the LICENSE.txt file. 9 --> 10 <title>WebGL tests</title> 11 </head> 12 <body> 13 14 <h1>Tests for the WebGL canvas context</h1> 15 16 <h2>These tests are intended to serve the following purposes:</h2> 17 <ul> 18 <li>Assert spec conformance (so that WebGL pages work the same across browsers and hardware)</li> 19 <li>Check the safety of the GL binding (bounds checking, same origin policy)</li> 20 <li>Provide performance numbers for developers</li> 21 </ul> 22 23 <h2>Test runners</h2> 24 <ul> 25 <li><a href="all_tests_linkonly.html">Run tests manually</a></li> 26 <li><a href="all_tests.html">Run all tests in parallel</a></li> 27 <li><a href="all_tests_sequential.html">Run all tests sequentially</a></li> 28 </ul> 29 30 31 <h2>Demos</h2> 32 <ul> 33 <li><a href="demos/opengl_web.html">OpenGL for the web</a> (requires working FBOs and null textures or using canvases as textures)</li> 34 <li><a href="demos/video.html">Green screen video demo with a color remapping filter</a> (requires loading <video> to texture with texImage2D)</li> 35 </ul> 36 37 <h2>Running the tests</h2> 38 39 <ol> 40 <li><a href="http://learningwebgl.com/blog/?p=11">Install a browser with WebGL support</a></li> 41 <li>Open one of the test runners linked above in your browser.</li> 42 <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> 43 </ol> 44 45 <h2>Want to contribute?</h2> 46 47 <p>See the <a href="README.md">README</a>.</p> 48 <p>See the <a href="http://github.com/kig/canvas3d-tests">GitHub page</a>.</p> 49 <p>Mail me at <a href="mailto:ilmari.heikkinen@gmail.com">ilmari.heikkinen@gmail.com</a></p> 50 51 52 <h2>For more information on WebGL</h2> 53 54 <ul> 55 <li><a href="http://planet-webgl.org">Planet WebGL</a></li> 56 <li><a href="http://learningwebgl.com">Learning WebGL</a></li> 57 <li><a href="http://www.khronos.org/message_boards/viewforum.php?f=34">WebGL on Khronos Message Boards</a></li> 58 </ul> 59 60 <h2>Developer links</h2> 61 <ul> 62 <li><a href="https://bugzilla.mozilla.org/buglist.cgi?quicksearch=webgl">WebGL on Mozilla Bugzilla</a></li> 63 <li><a href="https://bugzilla.webkit.org/buglist.cgi?quicksearch=webgl">WebGL on WebKit Bugzilla</a></li> 64 <li><a href="http://code.google.com/p/chromium/issues/list?q=label:3D-WebGL">WebGL on Chromium Bugzilla</a></li> 65 </ul> 66 67 68 <h2>License</h2> 69 70 <p> 71 These tests are released under the BSD license. The images and videos used in the tests are the respective property of their authors. 72 </p> 73 74 </body> 75 </html>