webgpuExternalTexture.d.ts 337 B

123456789
  1. import { ExternalTexture } from "../../Materials/Textures/externalTexture";
  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 declare class WebGPUExternalTexture extends ExternalTexture {
  8. constructor(video: HTMLVideoElement);
  9. }