mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-23 23:09:39 +03:00
820312eb35
Make thumbnailing work svn path=/trunk/netsurf/; revision=13159
14 lines
381 B
C
14 lines
381 B
C
#include "desktop/plotters.h"
|
|
|
|
extern const struct plotter_table fb_plotters;
|
|
|
|
nsfb_t *framebuffer_initialise(const char *fename, int width, int height, int bpp);
|
|
void framebuffer_finalise(void);
|
|
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);
|