diff --git a/CHANGES.md b/CHANGES.md index ca52c617879a..b48e6cd4b6c7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,11 @@ # Change Log +### 1.88 - 2021-12-1 + +##### Fixes :wrench: + +- Fixed a bug with .ktx2 textures having an incorrect minification filter. [#9876](https://github.com/CesiumGS/cesium/pull/9876/) + ### 1.87.1 - 2021-11-09 ##### Additions :tada: diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index c3322746d509..457179a3e766 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -168,6 +168,8 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to contribute to Cesiu - [Mark Aubin](https://github.com/markaubin) - [Michael Shantzis](https://github.com/shantzis1962) - [Sebastian Fernandez](https://github.com/SebastianPFernandez) +- Beijing Xibushijie + - [Tang Xiaofei](https://github.com/vtxf) ## [Individual CLA](Documentation/Contributors/CLAs/individual-contributor-license-agreement-v1.0.pdf) diff --git a/Source/Scene/Model.js b/Source/Scene/Model.js index 4d39a5375866..1271089c7040 100644 --- a/Source/Scene/Model.js +++ b/Source/Scene/Model.js @@ -2934,7 +2934,7 @@ function createTexture(gltfTexture, model, context) { ); } - var minificationFilter; + var minificationFilter = sampler.minificationFilter; if ( !defined(gltfTexture.mipLevels) && (minFilter === TextureMinificationFilter.NEAREST_MIPMAP_NEAREST ||