diff --git a/CHANGES.md b/CHANGES.md index 4c07765c1743..759b3ebfffab 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,8 +4,8 @@ ##### Deprecated :hourglass_flowing_sand: -- `loadCRN` was deprecated and will be removed in Cesium 1.82. It will be replaced with support for KTX2.[9478](https://github.com/CesiumGS/cesium/pull/9478) -- `loadKTX` was deprecated and will be removed in Cesium 1.82. It will be replaced with support for KTX2. [9478](https://github.com/CesiumGS/cesium/pull/9478) +- `loadCRN` has been deprecated and will be removed in CesiumJS 1.82. It will be replaced with support for KTX2.[9478](https://github.com/CesiumGS/cesium/pull/9478) +- `loadKTX` has been deprecated and will be removed in CesiumJS 1.82. It will be replaced with support for KTX2. [9478](https://github.com/CesiumGS/cesium/pull/9478) ### 1.80 - 2021-04-01 diff --git a/Source/Core/loadCRN.js b/Source/Core/loadCRN.js index 0d5cbb6823fe..777c2475413c 100644 --- a/Source/Core/loadCRN.js +++ b/Source/Core/loadCRN.js @@ -37,12 +37,12 @@ var transcodeTaskProcessor = new TaskProcessor("transcodeCRNToDXT"); * @see {@link https://github.com/BinomialLLC/crunch|crunch DXTc texture compression and transcoding library} * @see {@link http://www.w3.org/TR/cors/|Cross-Origin Resource Sharing} * @see {@link http://wiki.commonjs.org/wiki/Promises/A|CommonJS Promises/A} - * @deprecated This function has been deprecated and will be removed in Cesium 1.82. + * @deprecated This function has been deprecated and will be removed in CesiumJS 1.82. */ function loadCRN(resourceOrUrlOrBuffer) { deprecationWarning( "loadCRN", - "loadCRN is deprecated and will be removed in Cesium 1.82." + "loadCRN is deprecated and will be removed in CesiumJS 1.82." ); //>>includeStart('debug', pragmas.debug); if (!defined(resourceOrUrlOrBuffer)) { diff --git a/Source/Core/loadKTX.js b/Source/Core/loadKTX.js index e8374c4ea219..4013c776cbd0 100644 --- a/Source/Core/loadKTX.js +++ b/Source/Core/loadKTX.js @@ -58,12 +58,12 @@ import deprecationWarning from "./deprecationWarning.js"; * @see {@link https://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/|KTX file format} * @see {@link http://www.w3.org/TR/cors/|Cross-Origin Resource Sharing} * @see {@link http://wiki.commonjs.org/wiki/Promises/A|CommonJS Promises/A} - * @deprecated This function has been deprecated and will be removed in Cesium 1.82. + * @deprecated This function has been deprecated and will be removed in CesiumJS 1.82. */ function loadKTX(resourceOrUrlOrBuffer) { deprecationWarning( "loadKTX", - "loadKTX is deprecated and will be removed in Cesium 1.82." + "loadKTX is deprecated and will be removed in CesiumJS 1.82." ); //>>includeStart('debug', pragmas.debug); Check.defined("resourceOrUrlOrBuffer", resourceOrUrlOrBuffer);