raze-gles/wadsrc/static/shaders/glsl/func_pbr.fp
2020-05-30 23:10:17 +02:00

8 lines
271 B
GLSL

void SetupMaterial(inout Material material)
{
SetMaterialProps(material, vTexCoord.st);
material.Metallic = texture(metallictexture, vTexCoord.st).r;
material.Roughness = texture(roughnesstexture, vTexCoord.st).r;
material.AO = texture(aotexture, vTexCoord.st).r;
}