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

Side by Side Diff: native_client_sdk/src/examples/demo/earth_simd/index.html

Issue 289023002: Initial SIMD demos life and earth for PNaCl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 <!-- 3 <!--
4 Copyright (c) 2013 The Chromium Authors. All rights reserved. 4 Copyright (c) 2013 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 <head> 8 <head>
9 <meta http-equiv="Pragma" content="no-cache"> 9 <meta http-equiv="Pragma" content="no-cache">
10 <meta http-equiv="Expires" content="-1"> 10 <meta http-equiv="Expires" content="-1">
11 <meta charset="UTF-8"> 11 <meta charset="UTF-8">
12 <title>{{title}}</title> 12 <title>Multi-Threaded SIMD Earth Demo for PNaCl</title>
binji 2014/05/15 18:58:37 just use {{title}} here. It is filled in automatic
nfullagar 2014/05/15 21:25:13 Done.
13 <script type="text/javascript" src="common.js"></script> 13 <script type="text/javascript" src="common.js"></script>
14 <script type="text/javascript" src="example.js"></script> 14 <script type="text/javascript" src="example.js"></script>
15 </head> 15 </head>
16 <body {{attrs}} data-width="640" data-height="640"> 16 <body data-name="earth_simd" data-tools="pnacl" data-configs="Debug Release" dat a-path="{tc}/{config}" data-width="640" data-height="640">
binji 2014/05/15 18:58:37 same here, you can leave this as {{attrs}}
nfullagar 2014/05/15 21:25:13 Done.
17 <h1>{{title}}</h1> 17 <h1>Multi-Threaded SIMD Earth Demo for PNaCl</h1>
18 <h2>Status: <code id="statusField">NO-STATUS</code></h2> 18 <h2>Status: <code id="statusField">NO-STATUS</code></h2>
19 <div> 19 <div>
20 This demo renders a rotating globe using the Graphics2D interface. 20 This PNaCl demo uses portable SIMD and renders a rotating globe using the
21 Graphics2D interface.
21 Image Credit: 22 Image Credit:
22 NASA Goddard Space Flight Center Image by Reto Stöckli (land surface, 23 NASA Goddard Space Flight Center Image by Reto Stöckli (land surface,
23 shallow water, clouds). Enhancements by Robert Simmon (ocean color, 24 shallow water, clouds). Enhancements by Robert Simmon (ocean color,
24 compositing, 3D globes, animation). 25 compositing, 3D globes, animation).
25 Data and technical support: MODIS Land Group; MODIS Science Data, 26 Data and technical support: MODIS Land Group; MODIS Science Data,
26 Support Team; MODIS Atmosphere Group; MODIS Ocean Group Additional data: 27 Support Team; MODIS Atmosphere Group; MODIS Ocean Group Additional data:
27 USGS EROS Data Center (topography); USGS Terrestrial Remote Sensing 28 USGS EROS Data Center (topography); USGS Terrestrial Remote Sensing
28 Flagstaff Field Center (Antarctica); Defense Meteorological 29 Flagstaff Field Center (Antarctica); Defense Meteorological
29 Satellite Program (city lights). 30 Satellite Program (city lights).
30 <br> 31 <br>
(...skipping 28 matching lines...) Expand all
59 <label for="radio9">32</label> 60 <label for="radio9">32</label>
60 <br> 61 <br>
61 <input type="submit" id="benchmark" value="Run Benchmark"> 62 <input type="submit" id="benchmark" value="Run Benchmark">
62 <label id="result" name="result"> </label> 63 <label id="result" name="result"> </label>
63 </div> 64 </div>
64 <!-- The NaCl plugin will be embedded inside the element with id "listener". 65 <!-- The NaCl plugin will be embedded inside the element with id "listener".
65 See common.js.--> 66 See common.js.-->
66 <div id="listener"></div> 67 <div id="listener"></div>
67 </body> 68 </body>
68 </html> 69 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698