We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3055909 + 546e7a6 commit 6d02388Copy full SHA for 6d02388
CHANGES.md
@@ -5,6 +5,7 @@
5
##### Fixes :wrench:
6
7
- Fixed JulianDate to always generate valid ISO strings for fractional milliseconds [#12345](https://github.com/CesiumGS/cesium/pull/12345)
8
+- Fixed intermittent z-fighting issue. [#12337](https://github.com/CesiumGS/cesium/issues/12337)
9
10
### 1.124 - 2024-12-02
11
packages/engine/Source/Shaders/DepthPlaneVS.glsl
@@ -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 commit comments