0
0
Fork 0
mirror of https://github.com/ZDoom/qzdoom.git synced 2025-02-28 23:01:44 +00:00
qzdoom/wadsrc/static/shaders/glsl/func_defaultmat.fp

11 lines
239 B
GLSL

Material ProcessMaterial()
{
Material material;
material.Base = ProcessTexel();
material.Normal = ApplyNormalMap(vTexCoord.st);
#if defined(BRIGHTMAP)
material.Bright = texture(brighttexture, vTexCoord.st);
#endif
return material;
}