2011-06-30 15:48:07 +00:00
|
|
|
#include "desktop/plotters.h"
|
|
|
|
|
|
|
|
extern const struct plotter_table fb_plotters;
|
|
|
|
|
2010-01-20 17:07:26 +00:00
|
|
|
nsfb_t *framebuffer_initialise(const char *fename, int width, int height, int bpp);
|
2014-07-26 22:12:55 +01:00
|
|
|
bool framebuffer_resize(nsfb_t *nsfb, int width, int height, int bpp);
|
2009-06-28 18:32:47 +00:00
|
|
|
void framebuffer_finalise(void);
|
2011-11-21 08:45:08 +00:00
|
|
|
bool framebuffer_set_cursor(struct fbtk_bitmap *bm);
|
|
|
|
|
|
|
|
/** Set framebuffer surface to render into
|
|
|
|
*
|
|
|
|
* @return return old surface
|
|
|
|
*/
|
|
|
|
nsfb_t *framebuffer_set_surface(nsfb_t *new_nsfb);
|