fbodepthbuffer.html (906B)
1 <html> 2 <head> 3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 4 <title>WebGL FBO Depthbuffer Conformance 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 9 <script src="../../../closure-library/closure/goog/base.js"></script> 10 <script src="../../deqp-deps.js"></script> 11 <script>goog.require('functional.gles3.es3fFboDepthbufferTests');</script> 12 </head> 13 <body> 14 <div id="description"></div> 15 <div id="console"></div> 16 <canvas id="canvas" width="256" height="256"> </canvas> 17 <script> 18 var wtu = WebGLTestUtils; 19 var gl = wtu.create3DContextWithWrapperThatThrowsOnGLError('canvas', null, 2); 20 21 22 try { 23 functional.gles3.es3fFboDepthbufferTests.run(gl); 24 } 25 catch(err) 26 { 27 bufferedLogToConsole(err); 28 } 29 30 </script> 31 </body> 32 </html>