mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-14 16:40:40 +00:00
9 lines
248 B
Text
9 lines
248 B
Text
|
|
||
|
void SetupMaterial(inout Material material)
|
||
|
{
|
||
|
SetMaterialProps(material, vTexCoord.st);
|
||
|
material.Specular = texture(speculartexture, vTexCoord.st).rgb;
|
||
|
material.Glossiness = uSpecularMaterial.x;
|
||
|
material.SpecularLevel = uSpecularMaterial.y;
|
||
|
}
|