diff --git a/Source/Scene/ShadowMap.js b/Source/Scene/ShadowMap.js index a1a8bc089c21..bf51dcd9d6af 100644 --- a/Source/Scene/ShadowMap.js +++ b/Source/Scene/ShadowMap.js @@ -185,9 +185,9 @@ define([ this._needsUpdate = true; // In IE11 polygon offset is not functional. - // TODO : Also disabled for Chrome temporarily. Re-enable once https://github.com/AnalyticalGraphicsInc/cesium/issues/4560 is resolved. + // TODO : Also disabled for Chrome (ANGLE) temporarily. Re-enable once https://github.com/AnalyticalGraphicsInc/cesium/issues/4560 is resolved. var polygonOffsetSupported = true; - if (FeatureDetection.isInternetExplorer() || FeatureDetection.isChrome()) { + if (FeatureDetection.isInternetExplorer() || (FeatureDetection.isChrome() && FeatureDetection.isWindows())) { polygonOffsetSupported = false; } this._polygonOffsetSupported = polygonOffsetSupported;