gzdoom-gles/wadsrc/static/shaders_gles/glsl/func_defaultmat.fp
2021-05-22 11:23:57 +01:00

7 lines
190 B
GLSL

void SetupMaterial(inout Material material)
{
material.Base = ProcessTexel();
material.Normal = ApplyNormalMap(vTexCoord.st);
material.Bright = texture2D(brighttexture, vTexCoord.st);
}