rext-image-editor
Version:
REXT is a client side image editor that uses GPU.
13 lines (12 loc) • 365 B
TypeScript
export declare class Context {
private gl;
private program;
constructor(gl: WebGLRenderingContext, program: WebGLProgram);
private pointers;
private atributes;
private buffers;
getUniform(uniform: string): any;
getAttribute(atribute: string): any;
createBuffer(bufferName: string): any;
getBuffer(bufferName: string): any;
}