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

Unified Diff: samples/o3d-webgl/shape.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/ray_intersection_info.js ('k') | samples/o3d-webgl/transform.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/o3d-webgl/shape.js
===================================================================
--- samples/o3d-webgl/shape.js (revision 45983)
+++ samples/o3d-webgl/shape.js (working copy)
@@ -115,28 +115,53 @@
// For each element look at the DrawElements for that element.
for (var j = 0; j < element.drawElements.length; ++j) {
+ this.gl.client.render_stats_['drawElementsProcessed']++;
var drawElement = element.drawElements[j];
var material = drawElement.material || drawElement.owner.material;
var materialDrawList = material.drawList;
+ var rendered = false;
// Iterate through the drawlists we might write to.
for (var k = 0; k < drawListInfos.length; ++k) {
var drawListInfo = drawListInfos[k];
var list = drawListInfo.list;
- var context = drawListInfo.context;
// If any of those drawlists matches the material on the drawElement,
// add the drawElement to the list.
if (materialDrawList == list) {
+ var context = drawListInfo.context;
+ var view = context.view;
+ var projection = context.projection;
+
+ var worldViewProjection = [[], [], [], []];
+ var viewProjection = [[], [], [], []];
+ o3d.Transform.compose(projection, view, viewProjection);
+ o3d.Transform.compose(viewProjection, world, worldViewProjection);
+
+ if (element.cull && element.boundingBox) {
+ if (!element.boundingBox.inFrustum(worldViewProjection)) {
+ continue;
+ }
+ }
+
+ rendered = true;
list.list_.push({
- view: context.view,
- projection: context.projection,
+ view: view,
+ projection: projection,
world: world,
+ viewProjection: viewProjection,
+ worldViewProjection: worldViewProjection,
transform: transform,
drawElement: drawElement
});
}
}
+
+ if (rendered) {
+ this.gl.client.render_stats_['drawElementsRendered']++;
+ } else {
+ this.gl.client.render_stats_['drawElementsCulled']++;
+ }
}
}
};
« no previous file with comments | « samples/o3d-webgl/ray_intersection_info.js ('k') | samples/o3d-webgl/transform.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698