summaryrefslogtreecommitdiff
path: root/atari/plot/plotter.c
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2011-02-12 19:56:18 +0000
committerOle Loots <ole@monochrom.net>2011-02-12 19:56:18 +0000
commit11d0b4b98641254dda34a4e8898fd425656ac614 (patch)
treed08844179e2657bd422d6cd52e46db774fb03689 /atari/plot/plotter.c
parent445b337ef399a40d25e90ae52f9e5f26279ab537 (diff)
downloadnetsurf-11d0b4b98641254dda34a4e8898fd425656ac614.tar.gz
netsurf-11d0b4b98641254dda34a4e8898fd425656ac614.tar.bz2
Added the framebuffer "internal" font decoder/plotter,
fixed ablend method, introduced flag for monochrom bitmap drawing. svn path=/trunk/netsurf/; revision=11661
Diffstat (limited to 'atari/plot/plotter.c')
-rwxr-xr-xatari/plot/plotter.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/atari/plot/plotter.c b/atari/plot/plotter.c
index 6f9ba750e..f645af483 100755
--- a/atari/plot/plotter.c
+++ b/atari/plot/plotter.c
@@ -33,6 +33,7 @@
#include "atari/plot/plotter.h"
#include "atari/plot/plotter_vdi.h"
#include "atari/plot/font_vdi.h"
+#include "atari/plot/font_internal.h"
#include "atari/plot/font_freetype.h"
#include "atari/gui.h"
#include "utils/log.h"
@@ -134,6 +135,7 @@ const struct s_font_driver_table_entry font_driver_table[] =
{
{(char*)"vdi", ctor_font_plotter_vdi, 0},
{(char*)"freetype", ctor_font_plotter_freetype, 0},
+ {(char*)"internal", ctor_font_plotter_internal, 0},
{(char*)NULL, NULL, 0}
};