Files
nothoughts/node_modules/pixi.js/lib/rendering/renderers/gl/state/mapWebGLBlendModesToPixi.d.ts
2025-08-04 18:57:35 +02:00

9 lines
360 B
TypeScript

import type { BLEND_MODES } from '../../shared/state/const';
import type { GlRenderingContext } from '../context/GlRenderingContext';
/**
* Maps gl blend combinations to WebGL.
* @param gl
* @returns {object} Map of gl blend combinations to WebGL.
*/
export declare function mapWebGLBlendModesToPixi(gl: GlRenderingContext): Record<BLEND_MODES, number[]>;