render_mandelbrot.h
author Tero Marttila <terom@fixme.fi>
Mon, 07 Jul 2008 21:32:38 +0300
changeset 28 c239c5c3beda
parent 12 43297144f196
permissions -rw-r--r--
strip down the scriptaculous javascript code to a bare minimum, and rewrite tiles.js as tiles2.js - uses Classes, so the code is a lot neater. Still a couple bugs to work out, but mostly works

committer: Tero Marttila <terom@fixme.fi>
#include "render.h"

/*
 * the mandelbrot-rendering algorithm
 */

/*
 * return codes for mandelbrot_render
 */
#define MANDELBROT_OK 0
#define MANDELBROT_ERR 1

/*
 * Render the image specified by the given render context
 */
int render_mandelbrot (struct render *ctx);