diff options
author | Andrew Hannam <andrewh@inmarket.com.au> | 2012-11-11 05:50:38 -0800 |
---|---|---|
committer | Andrew Hannam <andrewh@inmarket.com.au> | 2012-11-11 05:50:38 -0800 |
commit | 33d7fe68b9cc5b509d468ecf21407482c0f0d257 (patch) | |
tree | 35ef68a073220e78e8d5a678255baa9e4cea1874 /demos/mandelbrot/main.c | |
parent | 8b51bcf46f97d7cd752f3b3d9b52b9f39051f60f (diff) | |
parent | e8020a88c96c1781c60c5506bb820f35d7aba6ec (diff) | |
download | uGFX-33d7fe68b9cc5b509d468ecf21407482c0f0d257.tar.gz uGFX-33d7fe68b9cc5b509d468ecf21407482c0f0d257.tar.bz2 uGFX-33d7fe68b9cc5b509d468ecf21407482c0f0d257.zip |
Merge pull request #3 from Tectu/master
Merge Tectu Changes
Diffstat (limited to 'demos/mandelbrot/main.c')
-rw-r--r-- | demos/mandelbrot/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/demos/mandelbrot/main.c b/demos/mandelbrot/main.c index 92f4aaa2..0c8dc47d 100644 --- a/demos/mandelbrot/main.c +++ b/demos/mandelbrot/main.c @@ -43,6 +43,7 @@ void mandelbrot(float x1, float y1, float x2, float y2) { x = xx - yy + cx;
}
color = ((iter << 8) | (iter&0xFF));
+ //color = RGB565CONVERT(iter*4, iter*13, iter*10);
gdispDrawPixel(i, j, color);
}
}
|