mirror of
https://github.com/stevenrobertson/cuburn.git
synced 2025-02-05 11:40:04 -05:00
Reduce the minimum blur radius
This commit is contained in:
parent
7825b006b4
commit
f3bf16f18a
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user