diff options
Diffstat (limited to 'mbrot.c')
-rw-r--r-- | mbrot.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,6 +8,7 @@ void *generate_mbrot_section(void *section) double a,b; double complex z,c; + for (y = d->core, b = (d->core*(3.5f/d->size)-1.75f); y < d->size; b+=((d->cores*3.5f)/d->size), y+=d->cores) { for (x = 0, a = -2.5f; x < d->size; a+=(3.5f/d->size), x++) @@ -21,7 +22,6 @@ void *generate_mbrot_section(void *section) z = cpow(z, d->power)+c; } - d->data[idx++] = (255*i)/d->iterat; } } |