Commit e8499ab1 authored by Michael Niedermayer's avatar Michael Niedermayer

mandelbrot: Add inner variable & enum for inner coloring schemes.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 3cbe9afb
......@@ -37,6 +37,10 @@ enum Outer{
NORMALIZED_ITERATION_COUNT,
};
enum Inner{
BLACK,
};
typedef struct Point {
double p[2];
uint32_t val;
......@@ -54,6 +58,7 @@ typedef struct {
double end_pts;
double bailout;
enum Outer outer;
enum Inner inner;
int cache_allocated;
int cache_used;
Point *point_cache;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment