Newer
Older
casic-smartcity-well-front / static / Cesium / Shaders / SkyBoxFS.glsl
[wangxitong] on 8 Jul 2021 207 bytes mars3d总览
uniform samplerCube u_cubeMap;

varying vec3 v_texCoord;

void main()
{
    vec4 color = textureCube(u_cubeMap, normalize(v_texCoord));
    gl_FragColor = vec4(czm_gammaCorrect(color).rgb, czm_morphTime);
}