Skip to content

Commit

Permalink
Merge pull request #8538 from AnalyticalGraphicsInc/8479/grey_screen
Browse files Browse the repository at this point in the history
8479 - Fix grey screen on Other/Unclassified toggle
  • Loading branch information
lilleyse authored Jan 14, 2020
2 parents 6e63eea + 977f26e commit 0a45aef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Change Log
* Fixed a bug where files with backslashes were not loaded in KMZ files. [#8533](https://github.com/AnalyticalGraphicsInc/cesium/pull/8533)
* 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 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

Expand Down
4 changes: 2 additions & 2 deletions Source/Scene/PointCloud.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 0a45aef

Please sign in to comment.