Metatarget for copying of testfile fixed.
[AROS.git] / workbench / libs / gallium / destroypipescreen.c
blobdf7dcf539976a843576dbe4b15e0a00e0ef1b356
1 /*
2 Copyright 2010, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include "gallium_intern.h"
8 /*****************************************************************************
10 NAME */
12 AROS_LH1(void, DestroyPipeScreen,
14 /* SYNOPSIS */
15 AROS_LHA(struct pipe_screen *, screen, A0),
17 /* LOCATION */
18 struct Library *, GalliumBase, 6, Gallium)
20 /* NAME
22 FUNCTION
23 Disposes the pipe screen
25 INPUTS
26 handle - a pointer to pipe screen structure. A NULL pointer will be
27 ignored.
29 RESULT
30 The pipe screen is freed. Don't use it anymore.
32 BUGS
34 INTERNALS
36 HISTORY
38 *****************************************************************************/
40 AROS_LIBFUNC_INIT
42 if (screen)
44 screen->destroy(screen);
47 AROS_LIBFUNC_EXIT