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.
34 lines
923 B
GLSL
34 lines
923 B
GLSL
attribute vec3 position3DHigh;
|
|
attribute vec3 position3DLow;
|
|
attribute vec3 prevPosition3DHigh;
|
|
attribute vec3 prevPosition3DLow;
|
|
attribute vec3 nextPosition3DHigh;
|
|
attribute vec3 nextPosition3DLow;
|
|
attribute vec2 expandAndWidth;
|
|
attribute vec2 st;
|
|
attribute float batchId;
|
|
|
|
varying float v_width;
|
|
varying vec2 v_st;
|
|
varying float v_polylineAngle;
|
|
|
|
void main()
|
|
{
|
|
float expandDir = expandAndWidth.x;
|
|
float width = abs(expandAndWidth.y) + 0.5;
|
|
bool usePrev = expandAndWidth.y < 0.0;
|
|
|
|
vec4 p = czm_computePosition();
|
|
vec4 prev = czm_computePrevPosition();
|
|
vec4 next = czm_computeNextPosition();
|
|
|
|
float angle;
|
|
vec4 positionWC = getPolylineWindowCoordinates(p, prev, next, expandDir, width, usePrev, angle);
|
|
gl_Position = czm_viewportOrthographic * positionWC;
|
|
|
|
v_width = width;
|
|
v_st.s = st.s;
|
|
v_st.t = czm_writeNonPerspective(st.t, gl_Position.w);
|
|
v_polylineAngle = angle;
|
|
}
|