From fc069066878da33a380480e923255630f81a6221 Mon Sep 17 00:00:00 2001 From: Samuel Vargas Date: Tue, 14 Jan 2020 13:43:44 -0500 Subject: [PATCH 1/3] 8479 - Fix grey screen on Other/Unclassified toggle --- Source/Scene/PointCloud.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Scene/PointCloud.js b/Source/Scene/PointCloud.js index 93eeec3c47b4..ad5ab762bca0 100644 --- a/Source/Scene/PointCloud.js +++ b/Source/Scene/PointCloud.js @@ -1127,8 +1127,8 @@ import StencilConstants from './StencilConstants.js'; } if (hasShowStyle) { - vs += ' gl_Position *= show; \n' + - ' gl_PointSize *= show; \n'; + vs += ' gl_Position.w *= float(show); \n' + + ' gl_PointSize *= float(show); \n'; } vs += '} \n'; From 0a11680ffe23ba819fe9d1ae98f6242a1b4c0a78 Mon Sep 17 00:00:00 2001 From: Samuel Vargas Date: Tue, 14 Jan 2020 15:41:33 -0500 Subject: [PATCH 2/3] 8479 - Update CHANGES.md --- CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.md b/CHANGES.md index 0045e0cd5cf8..7784ca8f2ed2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -23,6 +23,7 @@ Change Log * Fixed a bug where the camera could go underground during mouse navigation. [#8504](https://github.com/AnalyticalGraphicsInc/cesium/pull/8504) * Reduced Cesium bundle size by avoiding unnecessarily importing `Cesium3DTileset` in `Picking.js` [#8532](https://github.com/AnalyticalGraphicsInc/cesium/pull/8532) * Fixed WebGL warning message about `EXT_float_blend` being implicitly enabled. [#8534](https://github.com/AnalyticalGraphicsInc/cesium/pull/8534) +* Fixed a bug where toggling classification visibility would result in a grey screen on Linux / Nvidia [#8538](https://github.com/AnalyticalGraphicsInc/cesium/pull/8538) ### 1.65.0 - 2020-01-06 From 977f26ecbca3c243855022dec9ec064b23500501 Mon Sep 17 00:00:00 2001 From: Sean Lilley Date: Tue, 14 Jan 2020 15:55:11 -0500 Subject: [PATCH 3/3] Tweak wording [skip ci] --- CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 7784ca8f2ed2..d9566cb2e6f5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -23,7 +23,7 @@ Change Log * Fixed a bug where the camera could go underground during mouse navigation. [#8504](https://github.com/AnalyticalGraphicsInc/cesium/pull/8504) * Reduced Cesium bundle size by avoiding unnecessarily importing `Cesium3DTileset` in `Picking.js` [#8532](https://github.com/AnalyticalGraphicsInc/cesium/pull/8532) * Fixed WebGL warning message about `EXT_float_blend` being implicitly enabled. [#8534](https://github.com/AnalyticalGraphicsInc/cesium/pull/8534) -* Fixed a bug where toggling classification visibility would result in a grey screen on Linux / Nvidia [#8538](https://github.com/AnalyticalGraphicsInc/cesium/pull/8538) +* Fixed a bug where toggling point cloud classification visibility would result in a grey screen on Linux / Nvidia [#8538](https://github.com/AnalyticalGraphicsInc/cesium/pull/8538) ### 1.65.0 - 2020-01-06