Skip to content

Commit

Permalink
Merge branch 'main' into fix_12356
Browse files Browse the repository at this point in the history
  • Loading branch information
jfayot authored Dec 20, 2024
2 parents 69cd84e + 6d02388 commit 38e6a04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

- Added `environmentMapOptions` to `Entity`'s constructor options with EnvironmentMap disabled by default to allow long distance `Entity` jumps without performance drop. If EnvironmentMap needs to be enabled, ensure to provide a `maximumPositionEpsilon` threshold value large enough with your entity movements use case. [#12358](https://github.com/CesiumGS/cesium/pull/12358)
- Fixed JulianDate to always generate valid ISO strings for fractional milliseconds [#12345](https://github.com/CesiumGS/cesium/pull/12345)
- Fixed intermittent z-fighting issue. [#12337](https://github.com/CesiumGS/cesium/issues/12337)

### 1.124 - 2024-12-02

Expand Down
2 changes: 1 addition & 1 deletion packages/engine/Source/Shaders/DepthPlaneVS.glsl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ out vec4 positionEC;
void main()
{
positionEC = czm_modelView * position;
gl_Position = czm_modelViewProjection * position;
gl_Position = czm_projection * positionEC;

czm_vertexLogDepth();
}

0 comments on commit 38e6a04

Please sign in to comment.