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

Unified Diff: samples/o3d-webgl/element.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/draw_list.js ('k') | samples/o3d-webgl/field.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/o3d-webgl/element.js
===================================================================
--- samples/o3d-webgl/element.js (revision 45983)
+++ samples/o3d-webgl/element.js (working copy)
@@ -32,7 +32,7 @@
/**
* An Element manages DrawElements for classes inherited from Element.
- *
+ *
* @param {!o3d.Material} opt_material The Material used by this Element.
* @param {!o3d.BoundingBox} opt_boundingBox The BoundingBox used by this
* Element for culling.
@@ -145,7 +145,7 @@
* Creates a DrawElement for this Element. Note that unlike
* Shape.createDrawElements and Transform.createDrawElements this one will
* create more than one element for the same material.
- *
+ *
* @param {!o3d.Pack} pack pack used to manage created DrawElement.
* @param {!o3d.Material} material material to use for DrawElement. If you
* pass null it will use the material on this Element. This allows you
@@ -155,7 +155,7 @@
*/
o3d.Element.prototype.createDrawElement =
function(pack, material) {
- drawElement = new o3d.DrawElement();
+ drawElement = pack.createObject('DrawElement');
drawElement.owner = this;
drawElement.material = material || this.material;
this.drawElements.push(drawElement);
« no previous file with comments | « samples/o3d-webgl/draw_list.js ('k') | samples/o3d-webgl/field.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698