0
0
Fork 0
mirror of https://github.com/ZDoom/qzdoom.git synced 2025-03-12 12:12:38 +00:00
qzdoom/wadsrc/static/shaders/glsl/func_defaultmat.fp

12 lines
239 B
Text
Raw Normal View History

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