浏览代码

adds imageBitmap type to CanvasTexture that can be used in workers

Alexandros Gounis 4 年之前
父节点
当前提交
fd97b9396d
共有 1 个文件被更改,包括 1 次插入1 次删除
  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]
 	 */
 	constructor(
-		canvas: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement,
+		canvas: HTMLImageElement | HTMLCanvasElement | HTMLVideoElement | ImageBitmap,
 		mapping?: Mapping,
 		wrapS?: Wrapping,
 		wrapT?: Wrapping,