(sampler, image)
| 551 | |
| 552 | export class GLTFTexture { |
| 553 | constructor(sampler, image) { |
| 554 | this.gltfsampler = sampler; |
| 555 | this.sampler = sampler.sampler; |
| 556 | this.image = image; |
| 557 | this.imageView = image.createView(); |
| 558 | } |
| 559 | } |
| 560 | |
| 561 | export class GLBModel { |
nothing calls this directly
no outgoing calls
no test coverage detected