tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

negativetextureapi.html (879B)


      1 <html>
      2 <head>
      3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
      4 <title>WebGL Negative Texture API Tests</title>
      5 <link rel="stylesheet" href="../../../resources/js-test-style.css"/>
      6 <script src="../../../js/js-test-pre.js"></script>
      7 <script src="../../../js/webgl-test-utils.js"></script>
      8 <script src="../../../closure-library/closure/goog/base.js"></script>
      9 <script src="../../deqp-deps.js"></script>
     10 <script>goog.require('functional.gles3.es3fNegativeTextureApiTests');</script>
     11 </head>
     12 <body>
     13 <div id="description"></div>
     14 <div id="console"></div>
     15 <canvas id="canvas" width="320" height="240"></canvas>
     16 <script>
     17 
     18    var wtu = WebGLTestUtils;
     19    var gl = wtu.create3DContext('canvas', null, 2);
     20 
     21    try {
     22        functional.gles3.es3fNegativeTextureApiTests.run(gl);
     23    }
     24    catch(err) {
     25        bufferedLogToConsole(err);
     26    }
     27 
     28 </script>
     29 </body>
     30 </html>