mirror of
https://github.com/gre/gl-react.git
synced 2026-01-18 16:16:59 +00:00
6 lines
135 B
JavaScript
Executable File
6 lines
135 B
JavaScript
Executable File
import createGL from "gl";
|
|
|
|
export default function getContext(canvas, opts) {
|
|
return createGL(canvas.width, canvas.height, opts);
|
|
}
|