0
0
Fork 0
mirror of https://github.com/ZDoom/raze-gles.git synced 2025-02-17 17:11:27 +00:00
raze-gles/wadsrc/static/shaders/glsl/material_nolight.fp

6 lines
147 B
Text
Raw Normal View History

2020-04-26 21:17:54 +00:00
vec3 ProcessMaterialLight(Material material, vec3 color)
{
return material.Base.rgb * clamp(color + desaturate(uDynLightColor).rgb, 0.0, 1.4);
}