gecko-dev/content/canvas/test/reftest/webgl-utils.js

69 строки
1.3 KiB
JavaScript

"use strict";
function parseArgs() {
var query = window.location.search.substring(1);
var split = query.split("&");
var args = {}
for (var i = 0; i < split.length; i++) {
var pair = split[i].split("=");
var key = pair[0];
var value = true;
if (pair.length >= 2) {
eval("value = " + decodeURIComponent(pair[1]) + ";");
}
args[key] = value;
}
return args;
}
var gArgs = null;
function arg(key) {
if (gArgs === null) {
gArgs = parseArgs();
}
var ret = gArgs[key];
if (ret === undefined)
ret = false;
return ret;
}
function initGL(canvas) {
if (arg("nogl"))
return null;
var gl = null;
var withAA = arg("aa");
var withAlpha = arg("alpha");
var withDepth = arg("depth");
var withPremult = arg("premult");
var withPreserve = arg("preserve");
var withStencil = arg("stencil");
try {
var argDict = {
alpha: withAlpha,
depth: withDepth,
stencil: withStencil,
antialias: withAA,
premultipliedAlpha: withPremult,
preserveDrawingBuffer: withPreserve,
};
gl = canvas.getContext("experimental-webgl", argDict);
} catch(e) {}
return gl;
}
function rAF(func) {
var raf = window.requestAnimationFrame || window.mozRequestAnimationFrame;
raf(func);
}