render_mandelbrot.h
author Tero Marttila <terom@fixme.fi>
Thu, 28 Aug 2008 01:34:14 +0300
changeset 44 03a7e064f833
parent 12 43297144f196
permissions -rw-r--r--
stub functions and documentation
#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);