OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
5 <title>WebGL Uninitialized GL Resources Tests</title> | 5 <title>WebGL Uninitialized GL Resources Tests</title> |
6 <script src="../../js/resources/js-test-pre.js"></script> | 6 <script src="../../../resources/js-test.js"></script> |
7 <script src="resources/webgl-test.js"></script> | 7 <script src="resources/webgl-test.js"></script> |
8 </head> | 8 </head> |
9 <body> | 9 <body> |
10 <div id="description"></div> | 10 <div id="description"></div> |
11 <div id="console"></div> | 11 <div id="console"></div> |
12 <canvas id="canvas" width="2" height="2"> </canvas> | 12 <canvas id="canvas" width="2" height="2"> </canvas> |
13 <script> | 13 <script> |
14 description("Tests to check user code cannot access uninitialized data from GL r
esources."); | 14 description("Tests to check user code cannot access uninitialized data from GL r
esources."); |
15 | 15 |
16 var canvas = document.getElementById("canvas"); | 16 var canvas = document.getElementById("canvas"); |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 //TODO: uninitialized vertex elements buffer | 233 //TODO: uninitialized vertex elements buffer |
234 //TODO: uninitialized framebuffer? (implementations would need to do a GL clear
at first binding?) | 234 //TODO: uninitialized framebuffer? (implementations would need to do a GL clear
at first binding?) |
235 //TODO: uninitialized renderbuffer? (implementations would need to do a GL clear
at first binding?) | 235 //TODO: uninitialized renderbuffer? (implementations would need to do a GL clear
at first binding?) |
236 //TODO: uninitialized uniform arrays? | 236 //TODO: uninitialized uniform arrays? |
237 | 237 |
238 debug(""); | 238 debug(""); |
239 </script> | 239 </script> |
240 </body> | 240 </body> |
241 </html> | 241 </html> |
242 | 242 |
OLD | NEW |