()
| 343 | return input === textureId; |
| 344 | } |
| 345 | get() { |
| 346 | ++counters.get; |
| 347 | return ( |
| 348 | this.texture && { |
| 349 | texture: this.texture, |
| 350 | width: size[0], |
| 351 | height: size[1] |
| 352 | } |
| 353 | ); |
| 354 | } |
| 355 | load() { |
| 356 | ++counters.load; |
| 357 | const promise = d.promise.then(() => { |
nothing calls this directly
no outgoing calls
no test coverage detected