Skip to content

Commit 93f69ec

Browse files
committed
Add @Private to functions exposed in CesiumJS
1 parent 6c03453 commit 93f69ec

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

lib/forEachTextureInMaterial.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ module.exports = forEachTextureInMaterial;
1313
* Mimics the behavior of functions in gltf-pipeline ForEach.
1414
* @param {Object} material The glTF material.
1515
* @param {forEachTextureInMaterial~handler} handler Function that is called for each texture in the material.
16+
*
17+
* @private
1618
*/
1719
function forEachTextureInMaterial(material, handler) {
1820
Check.typeOf.object('material', material);
@@ -135,4 +137,6 @@ function forEachTextureInMaterial(material, handler) {
135137
* @callback forEachTextureInMaterial~handler
136138
* @param {Number} The texture index.
137139
* @param {Object} The texture info object.
140+
*
141+
* @private
138142
*/

lib/getComponentReader.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,6 @@ function getComponentReader(componentType) {
7575
* @param {Number} numberOfComponents The number of components to read.
7676
* @param {Number} componentTypeByteLength The byte length of each component.
7777
* @param {Number} result An array storing the components that are read.
78+
*
79+
* @private
7880
*/

0 commit comments

Comments
 (0)