Files
nothoughts/node_modules/pixi.js/lib/utils/logging/logDebugTexture.d.ts
2025-08-04 18:57:35 +02:00

12 lines
533 B
TypeScript

import type { Texture } from '../../rendering/renderers/shared/texture/Texture';
import type { Renderer } from '../../rendering/renderers/types';
/**
* Logs a texture to the console as a base64 image.
* This can be very useful for debugging issues with rendering.
* @param texture - The texture to log
* @param renderer - The renderer to use
* @param size - The size of the texture to log in the console
* @ignore
*/
export declare function logDebugTexture(texture: Texture, renderer: Renderer, size?: number): Promise<void>;