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.
14 lines
503 B
JavaScript
14 lines
503 B
JavaScript
//This file is automatically rebuilt by the Cesium build process.
|
|
export default "uniform sampler2D image;\n\
|
|
\n\
|
|
czm_material czm_getMaterial(czm_materialInput materialInput)\n\
|
|
{\n\
|
|
czm_material material = czm_getDefaultMaterial(materialInput);\n\
|
|
vec4 rampColor = texture2D(image, vec2(materialInput.slope / (czm_pi / 2.0), 0.5));\n\
|
|
rampColor = czm_gammaCorrect(rampColor);\n\
|
|
material.diffuse = rampColor.rgb;\n\
|
|
material.alpha = rampColor.a;\n\
|
|
return material;\n\
|
|
}\n\
|
|
";
|