OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../../js/resources/js-test-pre.js"></script> | 3 <script src="../../js/resources/js-test-pre.js"></script> |
4 <script src="resources/webgl-test.js"></script> | 4 <script src="resources/webgl-test.js"></script> |
5 <script id="vshader" type="x-shader/x-vertex"> | 5 <script id="vshader" type="x-shader/x-vertex"> |
6 attribute vec3 pos; | 6 attribute vec3 pos; |
7 attribute vec4 colorIn; | 7 attribute vec4 colorIn; |
8 uniform float pointSize; | 8 uniform float pointSize; |
9 varying vec4 color; | 9 varying vec4 color; |
10 | 10 |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 <canvas id="testbed" width="2px" height="2px"></canvas> | 112 <canvas id="testbed" width="2px" height="2px"></canvas> |
113 <div id="description"></div> | 113 <div id="description"></div> |
114 <div id="console"></div> | 114 <div id="console"></div> |
115 <script> | 115 <script> |
116 description('Verify GL_VERTEX_PROGRAM_POINT_SIZE is enabled in WebGL'); | 116 description('Verify GL_VERTEX_PROGRAM_POINT_SIZE is enabled in WebGL'); |
117 | 117 |
118 if (runTest()) | 118 if (runTest()) |
119 testPassed(""); | 119 testPassed(""); |
120 </script> | 120 </script> |
121 | 121 |
122 <script src="../../js/resources/js-test-post.js"></script> | |
123 | 122 |
124 </body> | 123 </body> |
125 </html> | 124 </html> |
OLD | NEW |