r4493@vps: verhaegs | 2007-04-19 14:44:00 -0400
[AROS.git] / rom / graphics / changevpbitmap.c
blob498ef968fa07ea7872b7df16bfb05af93a9ef0ea
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Graphics function ChangeVPBitMap()
6 Lang: english
7 */
8 #include <aros/debug.h>
9 #include <graphics/gfx.h>
10 #include <graphics/view.h>
12 /*****************************************************************************
14 NAME */
15 #include <proto/graphics.h>
17 AROS_LH3(void, ChangeVPBitMap,
19 /* SYNOPSIS */
20 AROS_LHA(struct ViewPort *, vp, A0),
21 AROS_LHA(struct BitMap *, bm, A1),
22 AROS_LHA(struct DBufInfo *, db, A2),
24 /* LOCATION */
25 struct GfxBase *, GfxBase, 157, Graphics)
27 /* FUNCTION
29 INPUTS
30 vp - pointer to a viewport
31 bm - pointer to a BitMap structure. This BitMap structure must be of
32 the same layout as the one attached to the viewport
33 (same depth, alignment and BytesPerRow)
34 db - pointer to a DBufInfo
36 RESULT
38 NOTES
40 EXAMPLE
42 BUGS
44 SEE ALSO
46 INTERNALS
48 HISTORY
51 ******************************************************************************/
53 AROS_LIBFUNC_INIT
54 AROS_LIBBASE_EXT_DECL(struct GfxBase *,GfxBase)
56 #warning TODO: Write graphics/ChangeVPBitMap()
57 aros_print_not_implemented ("ChangeVPBitMap");
59 AROS_LIBFUNC_EXIT
60 } /* ChangeVPBitMap */