diff options
author | Jens Arnold <amiconn@rockbox.org> | 2008-01-13 00:11:43 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2008-01-13 00:11:43 +0000 |
commit | a72499a12541fa0348e92f88662d1efe15b0ea47 (patch) | |
tree | 32a874c093616649f49f4392207b738a6f7abed7 /apps/plugins/plasma.c | |
parent | 43cc03457d2bda7eb3057f242ff7b23a9856408c (diff) |
Greyscale library: Plugins can now put the management structure in IRAM for higher update speed. Use this in doom, mpegplayer, and zxbox. Made the api pointer part of the struct.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16066 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/plasma.c')
-rw-r--r-- | apps/plugins/plasma.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugins/plasma.c b/apps/plugins/plasma.c index 4f5fc39eb2..ce2af5c87b 100644 --- a/apps/plugins/plasma.c +++ b/apps/plugins/plasma.c @@ -44,6 +44,7 @@ static int redfactor = 1, greenfactor = 2, bluefactor = 3; static int redphase = 0, greenphase = 50, bluephase = 100; /* lower chance of gray at regular intervals */ #else +GREY_INFO_STRUCT static unsigned char colours[256]; /* Smooth transition of shades */ static unsigned char greybuffer[LCD_HEIGHT*LCD_WIDTH]; /* off screen buffer */ static unsigned char *gbuf; |