mirror of
https://bitbucket.org/CPMADevs/cnq3
synced 2025-04-05 09:00:51 +00:00
fixed NanoVDB froxel injection leaving extinction unchanged
This commit is contained in:
parent
7e203ea6ec
commit
a1efd4cbf9
1 changed files with 2 additions and 2 deletions
|
@ -343,7 +343,7 @@ void cs(uint3 id : SV_DispatchThreadID)
|
|||
float3 inScattered = lerp(extResult1.inScatteredLight, extResult2.inScatteredLight, t);
|
||||
materialTextureA[id] += float4(scatter.xxx, absorption);
|
||||
materialTextureC[id] += coverage;
|
||||
scatterExtTexture[id] += float4(scatter * inScattered, 0);
|
||||
scatterExtTexture[id] += float4(scatter * inScattered, extinction);
|
||||
}
|
||||
|
||||
if(emResult1.sum > 0.0 || emResult2.sum > 0.0)
|
||||
|
@ -384,7 +384,7 @@ void cs(uint3 id : SV_DispatchThreadID)
|
|||
float coverage = float(extResult.sampleCount) / float(extResult.maxSampleCount);
|
||||
materialTextureA[id] += float4(scatter.xxx, absorption);
|
||||
materialTextureC[id] += coverage;
|
||||
scatterExtTexture[id] += float4(scatter * extResult.inScatteredLight, 0);
|
||||
scatterExtTexture[id] += float4(scatter * extResult.inScatteredLight, extinction);
|
||||
}
|
||||
|
||||
if(emResult.sum > 0.0)
|
||||
|
|
Loading…
Reference in a new issue