2 * $Source: x:/prj/tech/libsrc/dev2d/RCS/fl8rsd8.c $
5 * $Date: 1996/10/16 16:06:38 $
7 * Routines for drawing rsd bitmaps into a flat 8 canvas.
9 * This file is part of the dev2d library.
16 extern void flat8_rsd8_blit (uchar
*rsd_src
, uchar
*dst
, int grd_bm_row
, int bm_w
);
18 void flat8_rsd8_ubitmap(grs_bitmap
*bm
, short x
, short y
)
21 uchar
*rsd_src
; /* rsd source buffer */
24 p_dst
= grd_bm
.bits
+ grd_bm
.row
*y
+ x
;
25 flat8_rsd8_blit(rsd_src
,p_dst
,grd_bm
.row
,bm
->w
);