Quellcode durchsuchen

adds imageBitmap type to CanvasTexture that can be used in workers

Alexandros Gounis vor 5 Jahren
Ursprung
Commit
fd97b9396d
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      src/textures/CanvasTexture.d.ts

+ 1 - 1
src/textures/CanvasTexture.d.ts

@@ -22,7 +22,7 @@ export class CanvasTexture extends Texture {
 	 * @param [encoding=THREE.LinearEncoding]
 	 * @param [encoding=THREE.LinearEncoding]
 	 */
 	 */
 	constructor(
 	constructor(
-		canvas: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement,
+		canvas: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageBitmap,
 		mapping?: Mapping,
 		mapping?: Mapping,
 		wrapS?: Wrapping,
 		wrapS?: Wrapping,
 		wrapT?: Wrapping,
 		wrapT?: Wrapping,

粤ICP备19079148号