OLD | NEW |
1 | 1 |
2 <!DOCTYPE html> | 2 <!DOCTYPE html> |
3 <html> | 3 <html> |
4 <head> | 4 <head> |
5 <meta charset="utf-8"> | 5 <meta charset="utf-8"> |
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 <script id="vshader" type="x-shader/x-vertex"> | 8 <script id="vshader" type="x-shader/x-vertex"> |
9 attribute vec3 pos; | 9 attribute vec3 pos; |
10 attribute vec4 colorIn; | 10 attribute vec4 colorIn; |
11 varying vec4 color; | 11 varying vec4 color; |
12 | 12 |
13 void main() | 13 void main() |
14 { | 14 { |
15 color = colorIn; | 15 color = colorIn; |
16 gl_Position = vec4(pos.xyz, 1.0); | 16 gl_Position = vec4(pos.xyz, 1.0); |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 finishTest(); | 342 finishTest(); |
343 } | 343 } |
344 | 344 |
345 </script> | 345 </script> |
346 </head> | 346 </head> |
347 <body onload="init()"> | 347 <body onload="init()"> |
348 <div id="description"></div> | 348 <div id="description"></div> |
349 <div id="console"></div> | 349 <div id="console"></div> |
350 </body> | 350 </body> |
351 </html> | 351 </html> |
OLD | NEW |