Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(488)

Side by Side Diff: tools/gpu_validation/unittest_data/mem_webgl.html

Issue 11668013: Added GPU stress test with multiple tabs in one single window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renames run_tests. Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>GPU Memory Test: Use N MB of GPU Memory with WebGL</title> 4 <title>GPU Memory Test: Use N MB of GPU Memory with WebGL</title>
5 5
6 <script id="vertex-shader" type="x-shader/x-vertex"> 6 <script id="vertex-shader" type="x-shader/x-vertex">
7 attribute vec2 a_position; 7 attribute vec2 a_position;
8 varying vec2 v_position; 8 varying vec2 v_position;
9 void main() { 9 void main() {
10 v_position = a_position; 10 v_position = a_position;
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 drawScene(); 127 drawScene();
128 } 128 }
129 </script> 129 </script>
130 </head> 130 </head>
131 131
132 <body> 132 <body>
133 <canvas id="canvas_id" width=256px height=256px style="width:256px; height:256px ;"/> 133 <canvas id="canvas_id" width=256px height=256px style="width:256px; height:256px ;"/>
134 </body> 134 </body>
135 </html> 135 </html>
136 136
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698