Merge pull request #25423 from akien-mga/gles2-spatialshader-light

GLES2: Define LIGHT Spatial shader builtin
This commit is contained in:
Rémi Verschelde 2019-01-28 19:26:35 +01:00 committed by GitHub
commit c4c517e13d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -869,6 +869,7 @@ ShaderCompilerGLES2::ShaderCompilerGLES2() {
//for light
actions[VS::SHADER_SPATIAL].renames["VIEW"] = "view";
actions[VS::SHADER_SPATIAL].renames["LIGHT_COLOR"] = "light_color";
actions[VS::SHADER_SPATIAL].renames["LIGHT"] = "light";
actions[VS::SHADER_SPATIAL].renames["ATTENUATION"] = "attenuation";
actions[VS::SHADER_SPATIAL].renames["DIFFUSE_LIGHT"] = "diffuse_light";
actions[VS::SHADER_SPATIAL].renames["SPECULAR_LIGHT"] = "specular_light";