New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / rom / graphics / calcivg.c
blobb407cc1ea13ed900cc25fd46b2b4e7a39125669f
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Graphics function CalcIVG()
6 Lang: english
7 */
8 #include <aros/debug.h>
9 #include <graphics/view.h>
11 /*****************************************************************************
13 NAME */
14 #include <proto/graphics.h>
16 AROS_LH2(UWORD, CalcIVG,
18 /* SYNOPSIS */
19 AROS_LHA(struct View *, View, A0),
20 AROS_LHA(struct ViewPort *, ViewPort, A1),
22 /* LOCATION */
23 struct GfxBase *, GfxBase, 138, Graphics)
25 /* FUNCTION
27 INPUTS
28 View - pointer to the View
29 ViewPort - pointer to the ViewPort you are interested in
31 RESULT
32 count - the number of ViewPort resolution scan lines needed
33 to execute all the copper instructions for ViewPort,
34 or 0 if any error
36 NOTES
38 EXAMPLE
40 BUGS
42 SEE ALSO
44 INTERNALS
46 HISTORY
49 ******************************************************************************/
51 AROS_LIBFUNC_INIT
52 AROS_LIBBASE_EXT_DECL(struct GfxBase *,GfxBase)
54 #warning TODO: Write graphics/CalcIVG()
55 aros_print_not_implemented ("CalcIVG");
57 return 0;
59 AROS_LIBFUNC_EXIT
60 } /* CalcIVG */