@figliolia/ripples
Version:
WebGL ripples based on the clever work of Pim Schreurs
15 lines (14 loc) • 401 B
TypeScript
import type { BrowserConfig } from "./types";
export declare class BrowserSupport implements BrowserConfig {
type: number;
extensions: string[];
linearSupport: boolean;
GL: WebGLRenderingContext;
arrayType: Float32ArrayConstructor | null;
constructor();
private detect;
private getAll;
private createConfig;
private frameAndBuffer;
private getExtensions;
}