1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| //This file is automatically rebuilt by the Cesium build process.
| export default "attribute vec3 position3DHigh;\n\
| attribute vec3 position3DLow;\n\
| attribute vec4 color;\n\
| attribute float batchId;\n\
| \n\
| varying vec4 v_color;\n\
| \n\
| void main()\n\
| {\n\
| vec4 p = czm_computePosition();\n\
| \n\
| v_color = color;\n\
| \n\
| gl_Position = czm_modelViewProjectionRelativeToEye * p;\n\
| }\n\
| ";
|
|