New attempt to get the svn revision into the AboutAROS requester.
[cake.git] / rom / graphics / mrgcop.c
blob2003a6c09bba3b2bf75877f07171df14c5b0223e
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Graphics function MrgCop()
6 Lang: english
7 */
8 #include <aros/debug.h>
9 #include <graphics/view.h>
11 /*****************************************************************************
13 NAME */
14 #include <proto/graphics.h>
16 AROS_LH1(ULONG, MrgCop,
18 /* SYNOPSIS */
19 AROS_LHA(struct View *, view, A1),
21 /* LOCATION */
22 struct GfxBase *, GfxBase, 35, Graphics)
24 /* FUNCTION
25 Merge together the display, color, sprite and user coprocessor
26 instructions into a single coprocessor instruction stream.
28 INPUTS
29 view - a pointer to the view structure whos coprocessor instructions
30 are to be merged.
32 RESULT
33 error - ULONG error value indicating either lack of memory to build the system copper lists,
34 or that MrgCop() has no work to do - ie there where no viewPorts in the list.
36 NOTES
37 Pre-v39 AmigaOS returns void.
39 EXAMPLE
41 BUGS
43 SEE ALSO
45 INTERNALS
47 HISTORY
50 ******************************************************************************/
52 AROS_LIBFUNC_INIT
54 #warning TODO: Write graphics/MrgCop()
55 aros_print_not_implemented ("MrgCop");
57 return MCOP_NO_MEM;
59 AROS_LIBFUNC_EXIT
60 } /* MrgCop */