| 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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 dst[11] = a20 * b03 + a21 * b13 + a22 * b23 + a23 * b33; | 321 dst[11] = a20 * b03 + a21 * b13 + a22 * b23 + a23 * b33; |
| 322 dst[12] = a30 * b00 + a31 * b10 + a32 * b20 + a33 * b30; | 322 dst[12] = a30 * b00 + a31 * b10 + a32 * b20 + a33 * b30; |
| 323 dst[13] = a30 * b01 + a31 * b11 + a32 * b21 + a33 * b31; | 323 dst[13] = a30 * b01 + a31 * b11 + a32 * b21 + a33 * b31; |
| 324 dst[14] = a30 * b02 + a31 * b12 + a32 * b22 + a33 * b32; | 324 dst[14] = a30 * b02 + a31 * b12 + a32 * b22 + a33 * b32; |
| 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 <script src="../../js/resources/js-test-post.js"></script> | |
| 332 </body> | 331 </body> |
| 333 </html> | 332 </html> |
| 334 | 333 |
| 335 | 334 |
| OLD | NEW |