sdfsdfs
This commit is contained in:
12
node_modules/pixi.js/lib/scene/text-html/utils/getTemporaryCanvasFromImage.d.ts
generated
vendored
Normal file
12
node_modules/pixi.js/lib/scene/text-html/utils/getTemporaryCanvasFromImage.d.ts
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
/**
|
||||
* This function converts an image to a canvas, and returns the canvas.
|
||||
* It is used to convert images to canvases to work around a CORS issue where WebGPU cannot
|
||||
* upload an SVGImage to a texture.
|
||||
*
|
||||
* It uses the CanvasPool to get an optimal canvas and context, and then draws the image onto it.
|
||||
* This canvas is immediately returned to the CanvasPool for reuse, so use the result straight away!
|
||||
* (eg upload it to the GPU!)
|
||||
* @param image - The image to convert to a canvas.
|
||||
* @param resolution - The resolution of the canvas.
|
||||
*/
|
||||
export declare function getTemporaryCanvasFromImage(image: HTMLImageElement, resolution: number): HTMLCanvasElement;
|
Reference in New Issue
Block a user