@luma.gl/shadertools
Version:
Shader module system for luma.gl
22 lines (17 loc) • 451 B
TypeScript
export function getQualifierDetails(
line: any,
qualifiers: any
): {
qualifier: any;
type: any;
name: any;
};
export function getPassthroughFS(options: {
version?: number;
input?: any;
inputType?: any;
output?: any;
}): string;
export function typeToChannelSuffix(type: any): 'x' | 'xy' | 'xyz' | 'xyzw';
export function typeToChannelCount(type: any): 2 | 1 | 3 | 4;
export function convertToVec4(variable: any, type: any): any;