X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/d6f6602d7cea3a7899990fe79216af7d98d05917..9abfba44b394a64d978edebb58dc4f445cac2623:/lib/gdi/fb.h diff --git a/lib/gdi/fb.h b/lib/gdi/fb.h index ab801662..332819fd 100644 --- a/lib/gdi/fb.h +++ b/lib/gdi/fb.h @@ -14,11 +14,18 @@ class fbClass __u16 red[256], green[256], blue[256], trans[256]; static fbClass *instance; int locked; + + int m_number_of_pages; public: unsigned char *lfb; int showConsole(int state); int SetMode(unsigned int xRes, unsigned int yRes, unsigned int bpp); int Available() { return available; } + + int getNumPages() { return m_number_of_pages; } + + int setOffset(int off); + int waitVSync(); unsigned int Stride() { return stride; } fb_cmap *CMAP() { return &cmap; } @@ -30,11 +37,6 @@ public: // low level gfx stuff int PutCMAP(); - // gfx stuff (colors are 8bit!) - void Box(int x, int y, int width, int height, int color, int backcolor=0); - void NBox(int x, int y, int width, int height, int color); - void VLine(int x, int y, int sy, int color); - int lock(); void unlock(); int islocked() { return locked; }