@cesium/engine
Version:
CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.
14 lines (13 loc) • 382 B
JavaScript
//This file is automatically rebuilt by the Cesium build process.
export default "uniform sampler2D colorTexture;\n\
uniform float brightness;\n\
\n\
in vec2 v_textureCoordinates;\n\
\n\
void main(void)\n\
{\n\
vec3 rgb = texture(colorTexture, v_textureCoordinates).rgb;\n\
vec3 target = vec3(0.0);\n\
out_FragColor = vec4(mix(target, rgb, brightness), 1.0);\n\
}\n\
";