From cc11912da1e2881803828330f85b0fe177b570b6 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Tue, 14 Apr 2015 23:08:02 +0100 Subject: Convert framebuffer frontend to bitmap operations table. --- framebuffer/gui.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'framebuffer/gui.c') diff --git a/framebuffer/gui.c b/framebuffer/gui.c index e178d28fb..56fe41bc4 100644 --- a/framebuffer/gui.c +++ b/framebuffer/gui.c @@ -54,6 +54,7 @@ #include "framebuffer/font.h" #include "framebuffer/clipboard.h" #include "framebuffer/fetch.h" +#include "framebuffer/bitmap.h" #include "content/urldb.h" #include "content/fetch.h" @@ -106,7 +107,7 @@ static struct gui_drag { */ static void die(const char *error) { - LOG(("%s", error)); + fprintf(stderr, "%s\n", error); exit(1); } @@ -2081,6 +2082,7 @@ main(int argc, char** argv) .clipboard = framebuffer_clipboard_table, .fetch = framebuffer_fetch_table, .utf8 = framebuffer_utf8_table, + .bitmap = framebuffer_bitmap_table, }; ret = netsurf_register(&framebuffer_table); -- cgit v1.2.3