webgpuExternalTexture.js 392 B

123456789101112
  1. import { ExternalTexture } from "../../Materials/Textures/externalTexture.js";
  2. /**
  3. * Nothing specific to WebGPU in this class, but the spec is not final yet so let's remove it later on
  4. * if it is not needed
  5. * @internal
  6. **/
  7. export class WebGPUExternalTexture extends ExternalTexture {
  8. constructor(video) {
  9. super(video);
  10. }
  11. }
  12. //# sourceMappingURL=webgpuExternalTexture.js.map