فهرست منبع

Merge pull request #34 from cyle/master

added additional check to see if WebGL is supported
deltakosh 12 سال پیش
والد
کامیت
ff7b50b999
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      Babylon/babylon.engine.js

+ 2 - 2
Babylon/babylon.engine.js

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