1cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)<!DOCTYPE html>
2cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)<html>
3cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)<!--
4cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)Copyright 2014 The Chromium Authors. All rights reserved.
5cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)Use of this source code is governed by a BSD-style license that can be
6cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)found in the LICENSE file.
7cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)-->
8cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)<head>
9cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <meta http-equiv="Pragma" content="no-cache">
10cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <meta http-equiv="Expires" content="-1">
11cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <meta charset="UTF-8">
12cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <title>{{title}}</title>
13cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <script type="text/javascript" src="common.js"></script>
14cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <script type="text/javascript" src="example.js"></script>
15cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)</head>
16cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)<body {{attrs}} data-width="640" data-height="640">
17cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <h1>{{title}}</h1>
18cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <h2>Status: <code id="statusField">NO-STATUS</code></h2>
19cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <div>
20cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    This PNaCl demo uses portable SIMD and renders a rotating globe using the
21cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    Graphics2D interface.
22cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    Image Credit:
23cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    NASA Goddard Space Flight Center Image by Reto Stöckli (land surface,
24cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    shallow water, clouds). Enhancements by Robert Simmon (ocean color,
25cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    compositing, 3D globes, animation).
26cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    Data and technical support: MODIS Land Group; MODIS Science Data,
27cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    Support Team; MODIS Atmosphere Group; MODIS Ocean Group Additional data:
28cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    USGS EROS Data Center (topography); USGS Terrestrial Remote Sensing
29cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    Flagstaff Field Center (Antarctica); Defense Meteorological
30cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    Satellite Program (city lights).
31cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <br>
32cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    Zoom:
33cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <input type="range" id="zoomRange"
34cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)        min="1.0" max="50.0" step="0.5" value="14.0" />
35cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    Light:
36cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <input type="range" id="lightRange"
37cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)        min="0.2" max="2.0" step=".01" value="1.0" />
38cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <br>
39cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    Number of threads (0 is main thread):
40cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <input type="radio" name="threadCount" id="radio0" value="0"
41cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)        checked="checked">
42cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <label for="radio0">0</label>
43cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <input type="radio" name="threadCount" id="radio1" value="1">
44cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <label for="radio1">1</label>
45cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <input type="radio" name="threadCount" id="radio2" value="2">
46cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <label for="radio2">2</label>
47cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <input type="radio" name="threadCount" id="radio3" value="4">
48cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <label for="radio3">4</label>
49cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <input type="radio" name="threadCount" id="radio4" value="6">
50cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <label for="radio4">6</label>
51cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <input type="radio" name="threadCount" id="radio5" value="8">
52cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <label for="radio5">8</label>
53cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <input type="radio" name="threadCount" id="radio6" value="12">
54cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <label for="radio6">12</label>
55cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <input type="radio" name="threadCount" id="radio7" value="16">
56cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <label for="radio7">16</label>
57cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <input type="radio" name="threadCount" id="radio8" value="24">
58cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <label for="radio8">24</label>
59cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <input type="radio" name="threadCount" id="radio9" value="32">
60cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <label for="radio9">32</label>
61cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <br>
62cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <input type="submit" id="benchmark" value="Run Benchmark">
63cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)    <label id="result" name="result"> </label>
64cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  </div>
65cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <!-- The NaCl plugin will be embedded inside the element with id "listener".
66cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)      See common.js.-->
67cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <div id="listener"></div>
68cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)</body>
69cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)</html>
70