diff --git a/Source/Scene/ShadowMap.js b/Source/Scene/ShadowMap.js index 43688260d1fe..dadcf4c83bfb 100644 --- a/Source/Scene/ShadowMap.js +++ b/Source/Scene/ShadowMap.js @@ -185,8 +185,9 @@ define([ this._needsUpdate = true; // In IE11 polygon offset is not functional. + // TODO : Also disabled for Chrome temporarily. Re-enable once https://groups.google.com/forum/#!topic/webgl-dev-list/E1dAG65QBhg is resolved. var polygonOffsetSupported = true; - if (FeatureDetection.isInternetExplorer()) { + if (FeatureDetection.isInternetExplorer() || FeatureDetection.isChrome()) { polygonOffsetSupported = false; } this._polygonOffsetSupported = polygonOffsetSupported;