Release v0.9.6

This commit is contained in:
nimblefox-ci
2026-07-31 19:29:07 +03:00
parent 3602e87e0c
commit 8e6b90a10e
264 changed files with 12411 additions and 2 deletions
@@ -0,0 +1,12 @@
// Licensed under the Non-Profit Open Software License version 3.0
// Variables
float HeightContrastPow;
// Kernel
[numthreads(32,1,1)]
void HeightContrast (uint3 id : SV_DispatchThreadID)
{
// Expand height
HeightBuffer[id.x] = clamp(pow(abs(HeightBuffer[id.x] + 0.5), HeightContrastPow) - 0.5, 0, 1);
}