From 45a48acf8adb2d3aa4ddd396d05bff7bbd8ec76d Mon Sep 17 00:00:00 2001 From: Onek8 Date: Sun, 1 Jun 2025 03:39:35 +0000 Subject: [PATCH] Update leenkx/Sources/leenkx/renderpath/Inc.hx --- leenkx/Sources/leenkx/renderpath/Inc.hx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/leenkx/Sources/leenkx/renderpath/Inc.hx b/leenkx/Sources/leenkx/renderpath/Inc.hx index 09dd163..1d23303 100644 --- a/leenkx/Sources/leenkx/renderpath/Inc.hx +++ b/leenkx/Sources/leenkx/renderpath/Inc.hx @@ -678,7 +678,7 @@ class Inc { } else { if (t.name == "voxelsSDF" || t.name == "voxelsSDFtmp") { - t.format = "R16"; + t.format = "R8"; t.width = res; t.height = res * Main.voxelgiClipmapCount; t.depth = res; @@ -687,7 +687,7 @@ class Inc { #if (rp_voxels == "Voxel AO") { if (t.name == "voxelsOut" || t.name == "voxelsOutB") { - t.format = "R16"; + t.format = "R8"; t.width = res * (6 + 16); t.height = res * Main.voxelgiClipmapCount; t.depth = res; @@ -702,7 +702,7 @@ class Inc { #else { if (t.name == "voxelsOut" || t.name == "voxelsOutB") { - t.format = "RGBA64"; + t.format = "RGBA32"; t.width = res * (6 + 16); t.height = res * Main.voxelgiClipmapCount; t.depth = res;