Skip to content

Commit 6d3ecda

Browse files
committedNov 6, 2019
updated changes.md for patch
1 parent 2a263c0 commit 6d3ecda

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
 

‎CHANGES.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Change Log
22
==========
33

4+
### 1.63.1 - 2019-11-06
5+
6+
##### Fixes :wrench:
7+
* Fixed globe lighting and labels under different resolution scales.
8+
49
### 1.63 - 2019-11-01
510

611
##### Major Announcements :loudspeaker:

‎Source/Shaders/BillboardCollectionVS.glsl

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ vec4 addScreenSpaceOffset(vec4 positionEC, vec2 imageSize, float scale, vec2 dir
8484
#endif
8585

8686
mpp = czm_metersPerPixel(positionEC);
87-
positionEC.xy += (originTranslate + halfSize) * (sizeInMeters ? 1.0 : mpp);
87+
positionEC.xy += (originTranslate + halfSize) * czm_branchFreeTernary(sizeInMeters, 1.0, mpp);
8888
positionEC.xy += (translate + pixelOffset) * mpp;
8989

9090
return positionEC;

0 commit comments

Comments
 (0)
Please sign in to comment.