UNPKG

371 BTypeScriptView Raw
1import type { IUniformData } from '../Program';
2/**
3 * returns the uniform data from the program
4 * @private
5 * @param program - the webgl program
6 * @param gl - the WebGL context
7 * @returns {object} the uniform data for this program
8 */
9export declare function getUniformData(program: WebGLProgram, gl: WebGLRenderingContextBase): {
10 [key: string]: IUniformData;
11};