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

Unified Diff: samples/o3djs/webgl.js

Issue 1703014: Added culling sample. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 10 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « samples/o3d-webgl/transform.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/o3djs/webgl.js
===================================================================
--- samples/o3djs/webgl.js (revision 45983)
+++ samples/o3djs/webgl.js (working copy)
@@ -140,7 +140,7 @@
/**
* Creates a canvas under the given parent element and an o3d.Client
* under that.
- *
+ *
* @ param {!Element} element The element under which to insert the client.
* @ param {string} opt_features Features to turn on.
* @ param {boolean} opt_debug Whether gl debugging features should be
@@ -161,17 +161,20 @@
canvas = document.createElement('canvas');
canvas.style.width = "100%";
canvas.style.height = "100%";
+
+ var client = new o3d.Client;
+
var resizeHandler = function() {
var width = Math.max(1, canvas.clientWidth);
var height = Math.max(1, canvas.clientHeight);
canvas.width = width;
canvas.height = height;
canvas.sizeInitialized_ = true;
+ client.gl.displayInfo = {width: canvas.width, height: canvas.height};
};
window.addEventListener('resize', resizeHandler, false);
setTimeout(resizeHandler, 0);
- var client = new o3d.Client;
client.initWithCanvas(canvas);
canvas.client = client;
canvas.o3d = o3d;
« no previous file with comments | « samples/o3d-webgl/transform.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698