Replaced Popscren with a custom pop-up list for selecting public screen. Now it conta...
[tangerine.git] / rom / cgfx / blttemplatealpha.c
blob6146c3579889efb03cd953e7d084230517abe1a9
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
8 #include "cybergraphics_intern.h"
10 /*****************************************************************************
12 NAME */
13 #include <clib/cybergraphics_protos.h>
15 AROS_LH8(void, BltTemplateAlpha,
17 /* SYNOPSIS */
18 AROS_LHA(APTR , src , A0),
19 AROS_LHA(LONG , srcx , D0),
20 AROS_LHA(LONG , srcmod , D1),
21 AROS_LHA(struct RastPort *, rp , A1),
22 AROS_LHA(LONG , destx , D2),
23 AROS_LHA(LONG , desty , D3),
24 AROS_LHA(LONG , width , D4),
25 AROS_LHA(LONG , height , D5),
27 /* LOCATION */
28 struct Library *, CyberGfxBase, 37, Cybergraphics)
30 /* FUNCTION
32 INPUTS
34 RESULT
36 NOTES
38 EXAMPLE
40 BUGS
42 SEE ALSO
44 INTERNALS
46 HISTORY
47 27-11-96 digulla automatically created from
48 cybergraphics_lib.fd and clib/cybergraphics_protos.h
50 *****************************************************************************/
52 AROS_LIBFUNC_INIT
54 if (width && height)
56 driver_BltTemplateAlpha(src
57 , srcx
58 , srcmod
59 , rp
60 , destx, desty
61 , width, height
62 , GfxBase
66 AROS_LIBFUNC_EXIT
67 } /* BltTemplateAlpha */