0
0
Fork 0
mirror of https://github.com/ZDoom/gzdoom.git synced 2025-03-05 17:11:12 +00:00
gzdoom/wadsrc/static/shaders/glsl/func_pbr.fp

9 lines
271 B
Text
Raw Normal View History

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