mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-30 15:52:09 +00:00
10 lines
210 B
Text
10 lines
210 B
Text
|
|
||
|
vec4 ProcessTexel();
|
||
|
|
||
|
void SetupMaterial(inout Material material)
|
||
|
{
|
||
|
material.Base = ProcessTexel();
|
||
|
material.Normal = ApplyNormalMap(vTexCoord.st);
|
||
|
material.Bright = texture(brighttexture, vTexCoord.st);
|
||
|
}
|