Newer
Older
casic-smartcity-well-front / static / Cesium / Shaders / DepthPlaneVS.glsl
[wangxitong] on 8 Jul 2021 185 bytes mars3d总览
attribute vec4 position;

varying vec4 positionEC;

void main()
{
    positionEC = czm_modelView * position;
    gl_Position = czm_projection * positionEC;

    czm_vertexLogDepth();
}