From 818b8276df618bd9dbc32e915e58a69e55d95801 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Fri, 24 Apr 2015 13:28:20 +0100 Subject: Convert atari to bitmap render interface --- atari/bitmap.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'atari/bitmap.c') diff --git a/atari/bitmap.c b/atari/bitmap.c index 72e5a20e5..431d97dc8 100755 --- a/atari/bitmap.c +++ b/atari/bitmap.c @@ -426,6 +426,11 @@ bool atari_bitmap_resize(struct bitmap *img, HermesHandle hermes_h, return(true); } +static nserror bitmap_render(struct bitmap *bitmap, struct hlcache_handle *content) +{ + return NSERROR_NOT_IMPLEMENTED; +} + static struct gui_bitmap_table bitmap_table = { .create = atari_bitmap_create, .destroy = atari_bitmap_destroy, @@ -439,6 +444,7 @@ static struct gui_bitmap_table bitmap_table = { .get_bpp = bitmap_get_bpp, .save = bitmap_save, .modified = bitmap_modified, + .render = bitmap_render, }; struct gui_bitmap_table *atari_bitmap_table = &bitmap_table; -- cgit v1.2.3