foxygit / GZDoom Log in
commits tags

/wadsrc/static/shaders/glsl/func_pbr.fp · 271 B

raw
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;
}