|
@@ -21,6 +21,11 @@ xhr.addEventListener("load", function () {
|
|
|
var info = engine.getGlInfo();
|
|
|
console.log("Webgl Version: " + info.version);
|
|
|
console.log("Webgl Vendor: " + info.vendor);
|
|
|
+ // Reduces error ratio on Embedded Firefox for travis.
|
|
|
+ if (info.vendor === "VMware, Inc.") {
|
|
|
+ errorRatio = 5;
|
|
|
+ }
|
|
|
+
|
|
|
console.log("Webgl Renderer: " + info.renderer);
|
|
|
done();
|
|
|
});
|