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

8 lines
160 B
GLSL

Material ProcessMaterial()
{
Material material;
material.Base = getTexel(vTexCoord.st);
material.Normal = ApplyNormalMap(vTexCoord.st);
return material;
}