summaryrefslogtreecommitdiff
path: root/riscos/plotters.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-04-15 23:57:39 +0100
committerVincent Sanders <vince@kyllikki.org>2015-04-15 23:57:39 +0100
commitad18ef5db99eb38075e6e49246b097a8ba727ab8 (patch)
treec3dfedcf9d084df73449fa6e4be3f3713250d2fa /riscos/plotters.c
parent5c7e8618d5e5f2eb0b37dd937fb5669eeba407d0 (diff)
downloadnetsurf-ad18ef5db99eb38075e6e49246b097a8ba727ab8.tar.gz
netsurf-ad18ef5db99eb38075e6e49246b097a8ba727ab8.tar.bz2
Update RISC OS frontend to use bitmap operation table
Diffstat (limited to 'riscos/plotters.c')
-rw-r--r--riscos/plotters.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/riscos/plotters.c b/riscos/plotters.c
index d35d1f0c6..e23242e74 100644
--- a/riscos/plotters.c
+++ b/riscos/plotters.c
@@ -519,7 +519,7 @@ bool ro_plot_bitmap(int x, int y, int width, int height,
{
const uint8_t *buffer;
- buffer = bitmap_get_buffer(bitmap);
+ buffer = riscos_bitmap_get_buffer(bitmap);
if (!buffer) {
LOG(("bitmap_get_buffer failed"));
return false;
@@ -534,6 +534,6 @@ bool ro_plot_bitmap(int x, int y, int width, int height,
bg,
flags & BITMAPF_REPEAT_X, flags & BITMAPF_REPEAT_Y,
flags & BITMAPF_REPEAT_X || flags & BITMAPF_REPEAT_Y,
- bitmap_get_opaque(bitmap) ? IMAGE_PLOT_TINCT_OPAQUE :
+ riscos_bitmap_get_opaque(bitmap) ? IMAGE_PLOT_TINCT_OPAQUE :
IMAGE_PLOT_TINCT_ALPHA);
}