OLD | NEW |
1 <!-- | 1 <!-- |
2 | 2 |
3 /* | 3 /* |
4 ** Copyright (c) 2012 The Khronos Group Inc. | 4 ** Copyright (c) 2012 The Khronos Group Inc. |
5 ** | 5 ** |
6 ** Permission is hereby granted, free of charge, to any person obtaining a | 6 ** Permission is hereby granted, free of charge, to any person obtaining a |
7 ** copy of this software and/or associated documentation files (the | 7 ** copy of this software and/or associated documentation files (the |
8 ** "Materials"), to deal in the Materials without restriction, including | 8 ** "Materials"), to deal in the Materials without restriction, including |
9 ** without limitation the rights to use, copy, modify, merge, publish, | 9 ** without limitation the rights to use, copy, modify, merge, publish, |
10 ** distribute, sublicense, and/or sell copies of the Materials, and to | 10 ** distribute, sublicense, and/or sell copies of the Materials, and to |
(...skipping 12 matching lines...) Expand all Loading... |
23 ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. | 23 ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. |
24 */ | 24 */ |
25 | 25 |
26 --> | 26 --> |
27 | 27 |
28 <!DOCTYPE html> | 28 <!DOCTYPE html> |
29 <html> | 29 <html> |
30 <head> | 30 <head> |
31 <meta charset="utf-8"> | 31 <meta charset="utf-8"> |
32 <title>WebGL texture texSubImage2Ds cube map conformance test.</title> | 32 <title>WebGL texture texSubImage2Ds cube map conformance test.</title> |
33 <script src="../../js/resources/js-test-pre.js"></script> | 33 <script src="../../../resources/js-test.js"></script> |
34 <script src="resources/webgl-test.js"> </script> | 34 <script src="resources/webgl-test.js"> </script> |
35 <script src="resources/webgl-test-utils.js"></script> | 35 <script src="resources/webgl-test-utils.js"></script> |
36 </head> | 36 </head> |
37 <body> | 37 <body> |
38 <canvas id="example" width="256" height="256" style="width: 40px; height: 40px;"
></canvas> | 38 <canvas id="example" width="256" height="256" style="width: 40px; height: 40px;"
></canvas> |
39 <div id="description"></div> | 39 <div id="description"></div> |
40 <div id="console"></div> | 40 <div id="console"></div> |
41 <script id="vshader" type="x-shader/x-vertex"> | 41 <script id="vshader" type="x-shader/x-vertex"> |
42 attribute vec4 vPosition; | 42 attribute vec4 vPosition; |
43 uniform mat4 rotation; | 43 uniform mat4 rotation; |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 dst[15] = a30 * b03 + a31 * b13 + a32 * b23 + a33 * b33; | 325 dst[15] = a30 * b03 + a31 * b13 + a32 * b23 + a33 * b33; |
326 return dst; | 326 return dst; |
327 }; | 327 }; |
328 | 328 |
329 successfullyParsed = true; | 329 successfullyParsed = true; |
330 </script> | 330 </script> |
331 </body> | 331 </body> |
332 </html> | 332 </html> |
333 | 333 |
334 | 334 |
OLD | NEW |