From c771c7faadfe33f54f8fd5dc952264a1b371e4b7 Mon Sep 17 00:00:00 2001 From: Alexander Gauggel <agauggel@uni-koblenz.de> Date: Mon, 21 Jun 2021 17:52:21 +0200 Subject: [PATCH] [#81] Remove leftover debug code --- projects/voxelization/resources/shaders/voxel.inc | 1 - 1 file changed, 1 deletion(-) diff --git a/projects/voxelization/resources/shaders/voxel.inc b/projects/voxelization/resources/shaders/voxel.inc index 8742473d..68c7d159 100644 --- a/projects/voxelization/resources/shaders/voxel.inc +++ b/projects/voxelization/resources/shaders/voxel.inc @@ -147,7 +147,6 @@ vec3 voxelConeTrace(vec3 direction, vec3 startPosition, float coneAngleRadian, t vec4 voxelSample = textureLod(sampler3D(voxelTexture, voxelSampler), sampleUV , mip); color += (1 - a) * voxelSample.rgb; - voxelSample.a = pow(voxelSample.a, 0.6); a += (1 - a) * voxelSample.a; float minStepSize = 0.15; -- GitLab