2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
8 #include <aros/debug.h>
9 #include "graphics_intern.h"
10 #include <proto/graphics.h>
14 static const char THIS_FILE
[] = __FILE__
;
17 /*****************************************************************************
21 AROS_LH2(void, LoadRGB32
,
24 AROS_LHA(struct ViewPort
*, vp
, A0
),
25 AROS_LHA(const ULONG
*, table
, A1
),
28 struct GfxBase
*, GfxBase
, 147, Graphics
)
47 27-11-96 digulla automatically created from
48 graphics_lib.fd and clib/graphics_protos.h
50 *****************************************************************************/
53 AROS_LIBBASE_EXT_DECL(struct GfxBase
*,GfxBase
)
56 ASSERT_VALID_PTR_OR_NULL(table
);
58 /* it is legal to pass a NULL table */
64 /* table is terminated by a count value of 0 */
66 while ((count
= (*table
) >> 16))
70 first
= (*table
) & 0xFFFF;
74 for (t
= 0; t
< count
; t
++)
85 } /* while (*table) */