Skip to content

Commit 5ddf222

Browse files
committed
Comment and CHANGES.md
1 parent a6d88b3 commit 5ddf222

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Change Log
44
### 1.36 - 2017-08-01
55

66
* Added ability to show tile urls in the 3D Tiles Inspector. [#5592](https://github.com/AnalyticalGraphicsInc/cesium/pull/5592)
7+
* Fixed a bug when reading CRN compressed textures with multiple mip levels. [#5618](https://github.com/AnalyticalGraphicsInc/cesium/pull/5618)
78

89
### 1.35.2 - 2017-07-11
910

Source/Workers/transcodeCRNToDXT.js

+1
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ define([
133133
// When mipmaps are supported, a copy will still be necessary as dxtData is a view on the heap.
134134
var length = PixelFormat.compressedTextureSizeInBytes(format, width, height);
135135

136+
// Get a copy of the 0th mip level. dxtData will exceed length when there are more mip levels.
136137
// Equivalent to dxtData.slice(0, length), which is not supported in IE11
137138
var level0DXTDataView = dxtData.subarray(0, length);
138139
var level0DXTData = new Uint8Array(length);

0 commit comments

Comments
 (0)