mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14 lines
377 B
JavaScript
14 lines
377 B
JavaScript
function getGl() {
|
|
var c = document.createElement("canvas");
|
|
var gl = c.getContext("experimental-webgl");
|
|
assert_true(!!gl, "Should be able to get a context.");
|
|
return gl;
|
|
}
|
|
|
|
function shouldGenerateGLError(cx, glError, fn) {
|
|
test(function() {
|
|
fn();
|
|
assert_equals(cx.getError(), glError);
|
|
}, "Calling " + fn + " should generate a " + glError + " error.");
|
|
}
|