Chromium Code Reviews

Side by Side Diff: samples/o3d-webgl-samples/helloworld.html

Issue 1687019: Fixed samples to work with resizing code introduced yesterday. Now the... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: '' Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
1 <!-- 1 <!--
2 Copyright 2009, Google Inc. 2 Copyright 2009, Google Inc.
3 All rights reserved. 3 All rights reserved.
4 4
5 Redistribution and use in source and binary forms, with or without 5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are 6 modification, are permitted provided that the following conditions are
7 met: 7 met:
8 8
9 * Redistributions of source code must retain the above copyright 9 * Redistributions of source code must retain the above copyright
10 notice, this list of conditions and the following disclaimer. 10 notice, this list of conditions and the following disclaimer.
(...skipping 153 matching lines...)
164 // Load the scene into the transform graph as a child myDataRoot 164 // Load the scene into the transform graph as a child myDataRoot
165 loadScene(g_pack, '../assets/teapot/scene.json', myDataRoot); 165 loadScene(g_pack, '../assets/teapot/scene.json', myDataRoot);
166 } 166 }
167 </script> 167 </script>
168 </head> 168 </head>
169 <body> 169 <body>
170 <h1>Loading a scene.</h1> 170 <h1>Loading a scene.</h1>
171 This tutorial shows how we load and display a scene in O3D. 171 This tutorial shows how we load and display a scene in O3D.
172 <br/> 172 <br/>
173 <!-- Start of O3D plugin --> 173 <!-- Start of O3D plugin -->
174 <div id="o3d" width="600" height="600"></div> 174 <div id="o3d" style="width: 600px; height: 600px;"></div>
175 <!-- End of O3D plugin --> 175 <!-- End of O3D plugin -->
176 </body> 176 </body>
177 </html> 177 </html>
OLDNEW

Powered by Google App Engine