@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
12 lines • 392 B
JavaScript
import { ExternalTexture } from "../../Materials/Textures/externalTexture.js";
/**
* Nothing specific to WebGPU in this class, but the spec is not final yet so let's remove it later on
* if it is not needed
* @internal
**/
export class WebGPUExternalTexture extends ExternalTexture {
constructor(video) {
super(video);
}
}
//# sourceMappingURL=webgpuExternalTexture.js.map