forked from len0rd/rockbox
Rockboy - gameboy emulation for rockbox, based on gnuboy. Still a bit early, but already playable on iRiver H1xx and the simulators. The archos recorder version is currently rather slow...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6104 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
48dad47df9
commit
384de10246
56 changed files with 9225 additions and 1 deletions
35
apps/plugins/rockboy/fb.h
Normal file
35
apps/plugins/rockboy/fb.h
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
|
||||
|
||||
#ifndef __FB_H__
|
||||
#define __FB_H__
|
||||
|
||||
|
||||
#include "defs.h"
|
||||
|
||||
|
||||
|
||||
struct fb
|
||||
{
|
||||
byte *ptr;
|
||||
int w, h;
|
||||
int pelsize;
|
||||
int pitch;
|
||||
int indexed;
|
||||
struct
|
||||
{
|
||||
int l, r;
|
||||
} cc[4];
|
||||
int yuv;
|
||||
int enabled;
|
||||
int dirty;
|
||||
};
|
||||
|
||||
|
||||
extern struct fb fb;
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue