xorg: revert bad merge
[mesa.git] / src / gallium / state_trackers / xorg / xorg_composite.h
1 #ifndef XORG_COMPOSITE_H
2 #define XORG_COMPOSITE_H
3
4 #include "xorg_exa.h"
5
6 boolean xorg_composite_accelerated(int op,
7 PicturePtr pSrcPicture,
8 PicturePtr pMaskPicture,
9 PicturePtr pDstPicture);
10
11 boolean xorg_composite_bind_state(struct exa_context *exa,
12 int op,
13 PicturePtr pSrcPicture,
14 PicturePtr pMaskPicture,
15 PicturePtr pDstPicture);
16
17 void xorg_composite(struct exa_context *exa,
18 struct exa_pixmap_priv *dst,
19 int srcX, int srcY, int maskX, int maskY,
20 int dstX, int dstY, int width, int height);
21
22 #endif