mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-27 06:12:19 +00:00
9 lines
210 B
GLSL
9 lines
210 B
GLSL
|
|
vec4 ProcessTexel();
|
|
|
|
void SetupMaterial(inout Material material)
|
|
{
|
|
material.Base = ProcessTexel();
|
|
material.Normal = ApplyNormalMap(vTexCoord.st);
|
|
material.Bright = texture(brighttexture, vTexCoord.st);
|
|
}
|