diff --git a/Source/Scene/PointCloud3DTileContent.js b/Source/Scene/PointCloud3DTileContent.js index 7e447c28412f..d82a88667bb4 100644 --- a/Source/Scene/PointCloud3DTileContent.js +++ b/Source/Scene/PointCloud3DTileContent.js @@ -1018,11 +1018,13 @@ define([ if (hasNormals && backFaceCulling) { vs += ' float visible = step(-normal.z, 0.0); \n' + - ' gl_Position *= visible; \n'; + ' gl_Position *= visible; \n' + + ' gl_PointSize *= visible; \n'; } if (hasShowStyle) { - vs += ' gl_Position *= show; \n'; + vs += ' gl_Position *= show; \n' + + ' gl_PointSize *= show; \n'; } vs += '} \n';