@@ -361,10 +361,10 @@ function FeatureIdTexture() {
361361 /**
362362 * The texture containing feature IDs.
363363 *
364- * @type {ModelComponents.Texture }
364+ * @type {ModelComponents.TextureReader }
365365 * @private
366366 */
367- this . texture = undefined ;
367+ this . textureReader = undefined ;
368368}
369369
370370/**
@@ -647,21 +647,21 @@ function Components() {
647647}
648648
649649/**
650- * A texture.
650+ * The components for reading a texture.
651651 *
652- * @alias ModelComponents.Texture
652+ * @alias ModelComponents.TextureReader
653653 * @constructor
654654 *
655655 * @private
656656 */
657- function Texture ( ) {
657+ function TextureReader ( ) {
658658 /**
659659 * The underlying GPU texture. The {@link Texture} contains the sampler.
660660 *
661661 * @type {Texture }
662662 * @private
663663 */
664- this . texture = undefined ;
664+ this . textureReader = undefined ;
665665
666666 /**
667667 * The texture coordinate set.
@@ -700,15 +700,15 @@ function MetallicRoughness() {
700700 /**
701701 * The base color texture.
702702 *
703- * @type {ModelComponents.Texture }
703+ * @type {ModelComponents.TextureReader }
704704 * @private
705705 */
706706 this . baseColorTexture = undefined ;
707707
708708 /**
709709 * The metallic roughness texture.
710710 *
711- * @type {ModelComponents.Texture }
711+ * @type {ModelComponents.TextureReader }
712712 * @private
713713 */
714714 this . metallicRoughnessTexture = undefined ;
@@ -775,15 +775,15 @@ function SpecularGlossiness() {
775775 /**
776776 * The diffuse texture.
777777 *
778- * @type {ModelComponents.Texture }
778+ * @type {ModelComponents.TextureReader }
779779 * @private
780780 */
781781 this . diffuseTexture = undefined ;
782782
783783 /**
784784 * The specular glossiness texture.
785785 *
786- * @type {ModelComponents.Texture }
786+ * @type {ModelComponents.TextureReader }
787787 * @private
788788 */
789789 this . specularGlossinessTexture = undefined ;
@@ -863,23 +863,23 @@ function Material() {
863863 /**
864864 * The emissive texture.
865865 *
866- * @type {ModelComponents.Texture }
866+ * @type {ModelComponents.TextureReader }
867867 * @private
868868 */
869869 this . emissiveTexture = undefined ;
870870
871871 /**
872872 * The normal texture.
873873 *
874- * @type {ModelComponents.Texture }
874+ * @type {ModelComponents.TextureReader }
875875 * @private
876876 */
877877 this . normalTexture = undefined ;
878878
879879 /**
880880 * The occlusion texture.
881881 *
882- * @type {ModelComponents.Texture }
882+ * @type {ModelComponents.TextureReader }
883883 * @private
884884 */
885885 this . occlusionTexture = undefined ;
@@ -947,7 +947,7 @@ ModelComponents.Skin = Skin;
947947ModelComponents . Node = Node ;
948948ModelComponents . Scene = Scene ;
949949ModelComponents . Components = Components ;
950- ModelComponents . Texture = Texture ;
950+ ModelComponents . TextureReader = TextureReader ;
951951ModelComponents . MetallicRoughness = MetallicRoughness ;
952952ModelComponents . SpecularGlossiness = SpecularGlossiness ;
953953ModelComponents . Material = Material ;
0 commit comments