0
0
Fork 0
mirror of https://github.com/DrBeef/Raze.git synced 2025-06-03 02:21:15 +00:00
raze/wadsrc/static/shaders_gles/glsl/func_spec.fp

9 lines
250 B
Text
Raw Normal View History

2021-09-18 13:03:36 +02:00
void SetupMaterial(inout Material material)
{
SetMaterialProps(material, vTexCoord.st);
material.Specular = texture2D(speculartexture, vTexCoord.st).rgb;
material.Glossiness = uSpecularMaterial.x;
material.SpecularLevel = uSpecularMaterial.y;
}