UNPKG
@dspacev-bundle/vue-cesium
Version:
latest (3.24.2)
3.24.2
3.24.1
3.15.2
3.15.1
3.1.5
3.1.4
Vue 3.x components for CesiumJS.
github.com/zouyaoji/vue-cesium
zouyaoji/vue-cesium
@dspacev-bundle/vue-cesium
/
es
/
components
/
overlays
/
wind
/
glsl
/
fullscreen.vert.d.ts
3 lines
(2 loc)
•
196 B
TypeScript
View Raw
1
2
3
declare const text
=
"
\n
in vec3 position;
\n
in vec2 st;
\n
\n
out vec2 textureCoordinate;
\n
\n
void main() {
\n
textureCoordinate = st;
\n
gl_Position = vec4(position, 1.0);
\n
}
\n
"
; export
default
text;