Update to lasso handling. Adjust scroll amount based on difference between mouse...
[AROS.git] / rom / graphics / changevpbitmap.c
blob4716154b21559cb97d0403037f697ce69af21a15
1 /*
2 Copyright © 1995-2007, 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
55 #warning TODO: Write graphics/ChangeVPBitMap()
56 aros_print_not_implemented ("ChangeVPBitMap");
58 AROS_LIBFUNC_EXIT
59 } /* ChangeVPBitMap */