mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
15 lines
403 B
Text
15 lines
403 B
Text
|
|
||
|
Material ProcessMaterial()
|
||
|
{
|
||
|
Material material;
|
||
|
material.Base = getTexel(vTexCoord.st);
|
||
|
material.Normal = ApplyNormalMap(vTexCoord.st);
|
||
|
material.Specular = texture(speculartexture, vTexCoord.st).rgb;
|
||
|
material.Glossiness = uSpecularMaterial.x;
|
||
|
material.SpecularLevel = uSpecularMaterial.y;
|
||
|
#if defined(BRIGHTMAP)
|
||
|
material.Bright = texture(brighttexture, vTexCoord.st);
|
||
|
#endif
|
||
|
return material;
|
||
|
}
|