render_mandelbrot.h
author Tero Marttila <terom@fixme.fi>
Thu, 28 Aug 2008 03:14:07 +0300
changeset 47 a5c09677ca6f
parent 12 43297144f196
permissions -rw-r--r--
add the coro_test.c file, and update .hgignore a bit
#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);