Skip to content

Commit

Permalink
contentsVisibility works for empty tiles
Browse files Browse the repository at this point in the history
  • Loading branch information
lilleyse committed Sep 3, 2016
1 parent e077f89 commit 7d31334
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
6 changes: 1 addition & 5 deletions Source/Scene/Cesium3DTile.js
Expand Up @@ -513,13 +513,9 @@ define([
* @private
*/
Cesium3DTile.prototype.contentsVisibility = function(cullingVolume) {
var boundingVolume = this._contentBoundingVolume;
if (!defined(boundingVolume)) {
return Intersect.INSIDE;
}
// PERFORMANCE_IDEA: is it possible to burn less CPU on this test since we know the
// tile's (not the content's) bounding volume intersects the culling volume?
return cullingVolume.computeVisibility(boundingVolume);
return cullingVolume.computeVisibility(this.contentBoundingVolume);
};

/**
Expand Down
22 changes: 22 additions & 0 deletions Specs/Scene/Cesium3DTilesetSpec.js
Expand Up @@ -5,6 +5,7 @@ defineSuite([
'Core/Color',
'Core/defined',
'Core/HeadingPitchRange',
'Core/Intersect',
'Core/loadWithXhr',
'Core/Matrix4',
'Core/RequestScheduler',
Expand All @@ -23,6 +24,7 @@ defineSuite([
Color,
defined,
HeadingPitchRange,
Intersect,
loadWithXhr,
Matrix4,
RequestScheduler,
Expand Down Expand Up @@ -362,6 +364,26 @@ defineSuite([
expect(stats.visited).toEqual(1); // Visits the root, but stops early
expect(stats.numberOfCommands).toEqual(0);
expect(tileset._root.visibility(scene.frameState.cullingVolume)).toEqual(CullingVolume.MASK_OUTSIDE);
expect(tileset._root.contentsVisibility(scene.frameState.cullingVolume)).toEqual(Intersect.OUTSIDE);
});
});

it('does not select empty tiles when outside of view frustum', function() {
return Cesium3DTilesTester.loadTileset(scene, tilesetEmptyRootUrl).then(function(tileset) {
scene.renderForSpecs();
var stats = tileset._statistics;
expect(stats.visited).toEqual(5);
expect(stats.numberOfCommands).toEqual(4);

// Orient camera to face the sky
var center = Cartesian3.fromRadians(centerLongitude, centerLatitude, 100);
scene.camera.lookAt(center, new HeadingPitchRange(0.0, 1.57, 10.0));

scene.renderForSpecs();
expect(stats.visited).toEqual(1); // Visits the root, but stops early
expect(stats.numberOfCommands).toEqual(0);
expect(tileset._root.visibility(scene.frameState.cullingVolume)).toEqual(CullingVolume.MASK_OUTSIDE);
expect(tileset._root.contentsVisibility(scene.frameState.cullingVolume)).toEqual(Intersect.OUTSIDE);
});
});

Expand Down

0 comments on commit 7d31334

Please sign in to comment.