Files
random_tools/node_modules/@cesium/engine/Source/Shaders/DepthPlaneVS.glsl
T
2026-08-11 09:53:42 -04:00

12 lines
174 B
GLSL

in vec4 position;
out vec4 positionEC;
void main()
{
positionEC = czm_modelView * position;
gl_Position = czm_projection * positionEC;
czm_vertexLogDepth();
}