UNPKG

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