Files
nothoughts/node_modules/pixi.js/lib/rendering/high-shader/compileHighShaderToProgram.d.ts
2025-08-04 18:57:35 +02:00

12 lines
442 B
TypeScript

import { GlProgram } from '../renderers/gl/shader/GlProgram';
import { GpuProgram } from '../renderers/gpu/shader/GpuProgram';
import type { HighShaderBit } from './compiler/types';
export declare function compileHighShaderGpuProgram({ bits, name }: {
bits: HighShaderBit[];
name: string;
}): GpuProgram;
export declare function compileHighShaderGlProgram({ bits, name }: {
bits: HighShaderBit[];
name: string;
}): GlProgram;