Reduce the minimum blur radius

This commit is contained in:
Steven Robertson 2012-01-10 10:36:26 -05:00
parent 7825b006b4
commit f3bf16f18a

View File

@ -190,7 +190,7 @@ void density_est(float4 *outbuf, const float4 *pixbuf,
// does not match with a normal Gaussian; it just fits with // does not match with a normal Gaussian; it just fits with
// flam3's implementation. // flam3's implementation.
float scale = powf(den * ss, est_curve) * scale_coeff; float scale = powf(den * ss, est_curve) * scale_coeff;
scale = min(scale, 1.41421f); scale = min(scale, 2.0f);
for (int jj = -W2; jj < W2; jj++) { for (int jj = -W2; jj < W2; jj++) {
float jjf = (jj - ssxo) * scale; float jjf = (jj - ssxo) * scale;