Minor fixes to comments.
[AROS.git] / rom / graphics / calcivg.c
blob32bad0c04b6a7d102e9851f2cb48206004cd530f
1 /*
2 Copyright © 1995-2007, 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 #include "graphics_intern.h"
13 /*****************************************************************************
15 NAME */
16 #include <proto/graphics.h>
18 AROS_LH2(UWORD, CalcIVG,
20 /* SYNOPSIS */
21 AROS_LHA(struct View *, View, A0),
22 AROS_LHA(struct ViewPort *, ViewPort, A1),
24 /* LOCATION */
25 struct GfxBase *, GfxBase, 138, Graphics)
27 /* FUNCTION
28 Calculate the number of blank lines above a ViewPort.
30 INPUTS
31 View - pointer to the View
32 ViewPort - pointer to the ViewPort you are interested in
34 RESULT
35 count - the number of ViewPort resolution scan lines needed
36 to execute all the copper instructions for ViewPort,
37 or 0 if any error
39 NOTES
41 EXAMPLE
43 BUGS
45 SEE ALSO
47 INTERNALS
49 HISTORY
52 ******************************************************************************/
54 AROS_LIBFUNC_INIT
56 /* TODO: Write graphics/CalcIVG() */
57 aros_print_not_implemented ("CalcIVG");
59 return 0;
61 AROS_LIBFUNC_EXIT
62 } /* CalcIVG */