UNPKG

polygonjs-engine

Version:

node-based webgl 3D engine https://polygonjs.com

10 lines (9 loc) 430 B
import { BaseGlNodeType } from '../../_Base'; import { UniformGLDefinition } from '../../utils/GLDefinition'; import { GlConnectionPointType } from '../../../utils/io/connections/Gl'; export declare class UniformConfig { protected _gl_type: GlConnectionPointType; protected _name: string; constructor(_gl_type: GlConnectionPointType, _name: string); create_definition(node: BaseGlNodeType): UniformGLDefinition; }