forked from len0rd/rockbox
fixed lcd_blit for the (x11) sim
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4148 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c4e1bdf016
commit
41cfe303a6
2 changed files with 23 additions and 6 deletions
|
|
@ -29,3 +29,15 @@
|
|||
#else
|
||||
#include "lcd-x11.h"
|
||||
#endif
|
||||
|
||||
void lcd_blit(unsigned char* p_data, int x, int y, int width, int height,
|
||||
int stride)
|
||||
{
|
||||
(void)p_data;
|
||||
(void)x;
|
||||
(void)y;
|
||||
(void)width;
|
||||
(void)height;
|
||||
(void)stride;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue