mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
11 lines
239 B
GLSL
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;
|
|
}
|