New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / rom / graphics / movesprite.c
blob3cb07ba71b268f19d90c1eec491402b0382be41d
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Graphics function MoveSprite()
6 Lang: english
7 */
8 #include <aros/debug.h>
9 #include <graphics/view.h>
10 #include <graphics/sprite.h>
12 /*****************************************************************************
14 NAME */
15 #include <proto/graphics.h>
17 AROS_LH4(void, MoveSprite,
19 /* SYNOPSIS */
20 AROS_LHA(struct ViewPort *, vp, A0),
21 AROS_LHA(struct SimpleSprite *, sprite, A1),
22 AROS_LHA(WORD, x, D0),
23 AROS_LHA(WORD, y, D1),
25 /* LOCATION */
26 struct GfxBase *, GfxBase, 71, Graphics)
28 /* FUNCTION
30 INPUTS
32 RESULT
34 NOTES
36 EXAMPLE
38 BUGS
40 SEE ALSO
42 INTERNALS
44 HISTORY
47 ******************************************************************************/
49 AROS_LIBFUNC_INIT
50 AROS_LIBBASE_EXT_DECL(struct GfxBase *,GfxBase)
52 #warning TODO: Write graphics/MoveSprite()
53 aros_print_not_implemented ("MoveSprite");
55 AROS_LIBFUNC_EXIT
56 } /* MoveSprite */