forked from len0rd/rockbox
I found several plugins to draw beyond screen boundary
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4176 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
9aad0db9df
commit
2d720b2a79
4 changed files with 123 additions and 5 deletions
|
@ -41,7 +41,7 @@ static long matrice[3][3];
|
|||
static int nb_points = 8;
|
||||
|
||||
static int x_off = 56;
|
||||
static int y_off = 95;
|
||||
static int y_off = 31;
|
||||
static int z_off = 600;
|
||||
|
||||
/* Precalculated sine and cosine * 10000 (four digit fixed point math) */
|
||||
|
@ -249,7 +249,9 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
|||
|
||||
while(!exit)
|
||||
{
|
||||
if (!highspeed)
|
||||
if (highspeed)
|
||||
rb->yield();
|
||||
else
|
||||
rb->sleep(4);
|
||||
|
||||
rb->lcd_clear_display();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue