New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / rom / graphics / move.c
blob17ee70b6733698affdda8bd516b54c56c6480053
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$ $Log
5 Desc: Graphics function Move()
6 Lang: english
7 */
8 #include <graphics/rastport.h>
9 #include "graphics_intern.h"
10 #include "gfxfuncsupport.h"
12 /*****************************************************************************
14 NAME */
15 #include <graphics/rastport.h>
16 #include <proto/graphics.h>
18 AROS_LH3(void, Move,
20 /* SYNOPSIS */
21 AROS_LHA(struct RastPort *, rp, A1),
22 AROS_LHA(WORD , x, D0),
23 AROS_LHA(WORD , y, D1),
25 /* LOCATION */
26 struct GfxBase *, GfxBase, 40, Graphics)
28 /* FUNCTION
30 INPUTS
32 RESULT
34 NOTES
36 EXAMPLE
38 BUGS
40 SEE ALSO
42 INTERNALS
44 HISTORY
45 29-10-95 digulla automatically created from
46 graphics_lib.fd and clib/graphics_protos.h
48 *****************************************************************************/
50 AROS_LIBFUNC_INIT
51 AROS_LIBBASE_EXT_DECL(struct GfxBase *,GfxBase)
53 FIX_GFXCOORD(x);
54 FIX_GFXCOORD(y);
56 rp->cp_x = x;
57 rp->cp_y = y;
58 rp->linpatcnt = 15;
60 AROS_LIBFUNC_EXIT
62 } /* Move */