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

Unified Diff: samples/o3d-webgl/draw_list.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/client.js ('k') | samples/o3d-webgl/element.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/o3d-webgl/draw_list.js
===================================================================
--- samples/o3d-webgl/draw_list.js (revision 45983)
+++ samples/o3d-webgl/draw_list.js (working copy)
@@ -60,7 +60,7 @@
* BY_PERFORMANCE
* BY_Z_ORDER
* BY_PRIORITY
- *
+ *
* Method to sort DrawList by.
*/
o3d.DrawList.BY_PERFORMANCE = 0;
@@ -77,6 +77,8 @@
var drawElementInfo = this.list_[i];
var world = drawElementInfo.world;
var view = drawElementInfo.view;
+ var viewProjection = drawElementInfo.viewProjection;
+ var worldViewProjection = drawElementInfo.worldViewProjection;
var projection = drawElementInfo.projection;
var transform = drawElementInfo.transform;
var drawElement = drawElementInfo.drawElement;
@@ -88,6 +90,8 @@
o3d.Param.SAS.setWorld(world);
o3d.Param.SAS.setView(view);
o3d.Param.SAS.setProjection(projection);
+ o3d.Param.SAS.setViewProjection(viewProjection);
+ o3d.Param.SAS.setWorldViewProjection(worldViewProjection);
var paramObjects = [
transform,
« no previous file with comments | « samples/o3d-webgl/client.js ('k') | samples/o3d-webgl/element.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698