mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-01-23 01:41:02 +00:00
10 lines
213 B
Text
10 lines
213 B
Text
|
|
||
|
vec4 Process(vec4);
|
||
|
|
||
|
void SetupMaterial(inout Material material)
|
||
|
{
|
||
|
material.Base = Process(vec4(1.0));
|
||
|
material.Normal = ApplyNormalMap(vTexCoord.st);
|
||
|
material.Bright = texture(brighttexture, vTexCoord.st);
|
||
|
}
|