2 Copyright 2010, The AROS Development Team. All rights reserved.
6 #ifndef GALLIUM_GALLIUM_H
7 #define GALLIUM_GALLIUM_H
9 #ifndef P_AROS_VERSION_H
10 # include <gallium/pipe/p_aros_version.h>
13 /* Tags for CreatePipeScreen() function */
14 #define CPS_Dummy (TAG_USER)
15 #define CPS_GalliumInterfaceVersion (CPS_Dummy + 1)
17 /* A special version of CreatePipeScreen function with version embeded in call */
18 #define CreatePipeScreenV(tags) \
20 struct TagItem cpsvtags [] = \
22 { CPS_GalliumInterfaceVersion, GALLIUM_INTERFACE_VERSION }, \
23 { TAG_MORE, (IPTR)tags } \
25 CreatePipeScreen(cpsvtags); \