UNPKG

@thi.ng/webgl

Version:

WebGL & GLSL abstraction layer

10 lines (9 loc) 187 B
import { defError } from "@thi.ng/errors/deferror"; const WebGLError = defError(() => "WebGL"); const error = (msg) => { throw new WebGLError(msg); }; export { WebGLError, error };