1 /**
2  ** rblit_14.h ---- ram to ram blit support functions for 1bpp and
3  **                 4bpp RAM frame drivers
4  **
5  ** Copyright (c) 1998 Hartmut Schirmer
6  **
7  ** This file is part of the GRX graphics library.
8  **
9  ** The GRX graphics library is free software; you can redistribute it
10  ** and/or modify it under some conditions; see the "copying.grx" file
11  ** for details.
12  **
13  ** This library is distributed in the hope that it will be useful,
14  ** but WITHOUT ANY WARRANTY; without even the implied warranty of
15  ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16  **
17  **/
18 
19 void _GR_rblit_14(GrFrame *dst,int dx,int dy,
20 		  GrFrame *src,int x,int y,int w,int h,
21 		  GrColor op, int planes, _GR_blitFunc bitblt);
22