WIP: Vulkan: Workbench #107886

Closed
Jeroen Bakker wants to merge 88 commits from Jeroen-Bakker:vulkan-draw-manager-workbench into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 1 additions and 1 deletions
Showing only changes of commit db1b14a3a4 - Show all commits

View File

@ -14,5 +14,5 @@ shader node_refraction_bsdf(color Color = 0.8,
float eta = backfacing() ? 1.0 / f : f;
float roughness = Roughness * Roughness;
BSDF = microfacet(distribution, Normal, roughness, eta, 1);
BSDF = Color * microfacet(distribution, Normal, roughness, eta, 1);
}