mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
9 lines
217 B
GLSL
9 lines
217 B
GLSL
|
|
Material ProcessMaterial()
|
|
{
|
|
Material material;
|
|
material.Base = getTexel(vTexCoord.st);
|
|
material.Normal = ApplyNormalMap(vTexCoord.st);
|
|
material.Bright = texture(brighttexture, vTexCoord.st);
|
|
return material;
|
|
}
|