summaryrefslogtreecommitdiff
path: root/apps/plugins/fractals/fractal_sets.h
diff options
context:
space:
mode:
authorTeruaki Kawashima <teru@rockbox.org>2010-01-21 12:27:07 +0000
committerTeruaki Kawashima <teru@rockbox.org>2010-01-21 12:27:07 +0000
commite0dfa22cad7dd22e7ab7ac8d0fa2df21e4cedddb (patch)
tree372f9625b1498ccd28f575271969a17ef6b252b9 /apps/plugins/fractals/fractal_sets.h
parent7ebde8503b9923c97920a4a25c47c1dfd7edc69f (diff)
downloadrockbox-e0dfa22cad7dd22e7ab7ac8d0fa2df21e4cedddb.tar.gz
rockbox-e0dfa22cad7dd22e7ab7ac8d0fa2df21e4cedddb.zip
Fractals: this should fix bugs on simulator for greyscale LCD targets.
* moved #define USEGSLIB to fractal_sets.h and include only needed header file. * include plugin.h so that LCD_DEPTH is defined. * explicitly include fractal_sets.h in mandelbrot_set.c git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24309 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/fractals/fractal_sets.h')
-rw-r--r--apps/plugins/fractals/fractal_sets.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/plugins/fractals/fractal_sets.h b/apps/plugins/fractals/fractal_sets.h
index 3b5e3c7856..b2eaa589dc 100644
--- a/apps/plugins/fractals/fractal_sets.h
+++ b/apps/plugins/fractals/fractal_sets.h
@@ -21,8 +21,14 @@
21#ifndef _FRACTAL_SETS_H 21#ifndef _FRACTAL_SETS_H
22#define _FRACTAL_SETS_H 22#define _FRACTAL_SETS_H
23 23
24#include "plugin.h"
25
26#if (LCD_DEPTH < 8)
27#define USEGSLIB
24#include "lib/grey.h" 28#include "lib/grey.h"
29#else
25#include "lib/xlcd.h" 30#include "lib/xlcd.h"
31#endif
26 32
27#define DELTA 8 /* Panning moves 1/DELTA of screen */ 33#define DELTA 8 /* Panning moves 1/DELTA of screen */
28 34