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

varying vec2 v_textureCoordinates;

void main() 
{
    gl_Position = position;
    v_textureCoordinates = textureCoordinates;
}