mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-15 17:02:05 +00:00
7 lines
190 B
GLSL
7 lines
190 B
GLSL
|
|
void SetupMaterial(inout Material material)
|
|
{
|
|
material.Base = ProcessTexel();
|
|
material.Normal = ApplyNormalMap(vTexCoord.st);
|
|
material.Bright = texture2D(brighttexture, vTexCoord.st);
|
|
}
|