mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-16 09:21:43 +00:00
8381092cce
* handle brightmaps in the main shader instead of keeping separate instances around. * added detail and glow layers from Raze. * fixed material setup which could not guarantee that everything was initialized correctly. * for warped textures, warp all layers. With this brightmaps finally work on warped textures. Note: Vulkan reports a "device lost" error with this which still needs to be investigated.
8 lines
271 B
GLSL
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;
|
|
}
|