You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
attribute vec3 position;
|
|
attribute float a_batchId;
|
|
|
|
uniform mat4 u_modifiedModelViewProjection;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = czm_depthClamp(u_modifiedModelViewProjection * vec4(position, 1.0));
|
|
}
|