Skip to content

Commit

Permalink
updated changes.md for patch
Browse files Browse the repository at this point in the history
  • Loading branch information
IanLilleyT committed Nov 6, 2019
1 parent 2a263c0 commit 6d3ecda
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log
==========

### 1.63.1 - 2019-11-06

##### Fixes :wrench:
* Fixed globe lighting and labels under different resolution scales.

### 1.63 - 2019-11-01

##### Major Announcements :loudspeaker:
Expand Down
2 changes: 1 addition & 1 deletion Source/Shaders/BillboardCollectionVS.glsl
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ vec4 addScreenSpaceOffset(vec4 positionEC, vec2 imageSize, float scale, vec2 dir
#endif

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

return positionEC;
Expand Down

0 comments on commit 6d3ecda

Please sign in to comment.