rockbox/apps/plugins/rockboy/fb.h
Michiel Van Der Kolk 3921e1aa69 Added dynarec(under construction) and outline for lcd modes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6119 a1c6a512-1295-4272-9138-f99709370657
2005-03-03 19:44:02 +00:00

36 lines
253 B
C

#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;
int mode;
};
extern struct fb fb;
#endif