Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* eslint no-console:0 consistent-return:0 */
- "use strict";
- function main() {
- // Get A WebGL context
- var canvas = document.querySelector("#c");
- var gl = canvas.getContext("webgl");
- if (!gl) {
- return;
- }
- }
- main();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement