mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
14 lines
403 B
GLSL
14 lines
403 B
GLSL
|
|
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;
|
|
}
|