mirror of
				https://github.com/stevenrobertson/cuburn.git
				synced 2025-11-03 18:00:55 -05:00 
			
		
		
		
	Clamp DE radius further.
The maximum standard deviation pushes far too hard into the limits of the filter width, giving discrete points a weird boxy blur. The filter slice width needs to be expanded, but that's a whole lot of coeffecient debugging, and I'm putting it off by just reducing the maximum DE width for now.
This commit is contained in:
		@ -137,7 +137,7 @@ void logscale(float4 *pixbuf, float4 *outbuf, float k1, float k2) {
 | 
			
		||||
 | 
			
		||||
// See helpers/filt_err.py for source of these values.
 | 
			
		||||
#define MIN_SD 0.23299530f
 | 
			
		||||
#define MAX_SD 4.33333333f
 | 
			
		||||
#define MAX_SD 2.5f
 | 
			
		||||
 | 
			
		||||
__global__
 | 
			
		||||
void density_est(float4 *pixbuf, float4 *outbuf,
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user