Open
Description
Cave mode rendering draws entire blocks. Ideally, it would only draw the face of the block which is exposed (adjacent to air or fluid). The extra drawn surfaces make the rendering noisy. It's hard to tell what is actual surface.
Conceptually, cave should work more like a 3D renderer when the point-of-view is in the void. This effect is sometimes seen in Minecraft itself, due to a bug that causes near chunks to not be drawn, allowing a view of caves underground.
Algorithmically, this could possibly be achieved by only drawing surfaces that meet two requirements: they touch air, and they face towards the point-of-view.