Browse Source

- added additional check to see if WebGL is supported

cyle 12 years ago
parent
commit
ee2733030f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Babylon/babylon.engine.js

+ 2 - 2
Babylon/babylon.engine.js

@@ -11,7 +11,7 @@
             throw new Error("WebGL not supported");
             throw new Error("WebGL not supported");
         }
         }
 
 
-        if (this._gl === undefined) {
+        if (this._gl === undefined || this._gl === null) {
             throw new Error("WebGL not supported");
             throw new Error("WebGL not supported");
         }
         }
 
 
@@ -937,4 +937,4 @@
             return false;
             return false;
         }
         }
     };
     };
-})();
+})();