Skip to content

Commit

Permalink
Update CHANGES.md, and tweak some doc.
Browse files Browse the repository at this point in the history
  • Loading branch information
kring committed Mar 11, 2013
1 parent 4646e14 commit 1547653
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions CHANGES.md
Expand Up @@ -7,10 +7,13 @@ Beta Releases
### b15 - 2013-04-01

* Breaking changes:
*
* `ImageryLayer` callback functions for brightness, saturation, gamma, etc. are now passed the X, Y, and Level coordinates of the terrain tile being rendered rather than the imagery tile coordinates. They are also now provided the `Extent` of the terrain tile.
* Added `BoundingSphere.fromCornerPoints`.
* Added `fromArray` and `distance` functions to `Cartesian2`, `Cartesian3`, and `Cartesian4`.
* Added `DynamicPath.resolution` property for setting the maximum step size, in seconds, to take when sampling a position for path visualization.
* Added `DynamicPath.resolution` property for setting the maximum step size, in seconds, to take when sampling a position for path visualization.
* Added `TileCoordinatesImageryProvider` that renders imagery with tile X, Y, Level coordinates on the surface of the globe. This is mostly useful for debugging.
* Surface imagery is now rendered using one texture per tile per layer. This should improve performance as well as increase the number of layers that can be used before hitting hardware limitations.


### b14 - 2013-03-01

Expand Down
6 changes: 3 additions & 3 deletions Source/Scene/ImageryLayer.js
Expand Up @@ -781,9 +781,9 @@ define([

/**
* Finalizes a tile's texture for this layer to prepare it for rendering. Specifically, this method
* generates mipmaps for the texture. It should be called after one or more calls to
* {@link ImageryLayer#_copyImageryToTile} and before the tile is rendered. It can be called
* multiple times if the texture is updated over multiple render frames.
* generates mipmaps for the texture and propagates textures to child tiles. It should be called
* after one or more calls to {@link ImageryLayer#_copyImageryToTile} and before the tile is rendered.
* It can be called multiple times if the texture is updated over multiple render frames.
*
* @memberof ImageryLayer
* @private
Expand Down

0 comments on commit 1547653

Please sign in to comment.