r300: Zero-initialize register for NV_vertex_program
[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 struct exa_pixmap_priv *pSrc,
17 struct exa_pixmap_priv *pMask,
18 struct exa_pixmap_priv *pDst);
19
20 void xorg_composite(struct exa_context *exa,
21 struct exa_pixmap_priv *dst,
22 int srcX, int srcY, int maskX, int maskY,
23 int dstX, int dstY, int width, int height);
24
25 #endif