Newer
Older
casic-smartcity-well-front / static / Cesium / Shaders / VectorTileVS.glsl
[wangxitong] on 8 Jul 2021 201 bytes mars3d总览
attribute vec3 position;
attribute float a_batchId;

uniform mat4 u_modifiedModelViewProjection;

void main()
{
    gl_Position = czm_depthClamp(u_modifiedModelViewProjection * vec4(position, 1.0));
}