Merge branch 'master' of git+ssh://agd5f@git.freedesktop.org/git/mesa/mesa into r6xx...
[mesa.git] / src / gallium / state_trackers / xorg / xorg_composite.c
1 #include "xorg_composite.h"
2
3
4 boolean xorg_composite_accelerated(int op,
5 PicturePtr pSrcPicture,
6 PicturePtr pMaskPicture,
7 PicturePtr pDstPicture)
8 {
9 return FALSE;
10 }
11
12 boolean xorg_composite_bind_state(struct exa_context *exa,
13 int op,
14 PicturePtr pSrcPicture,
15 PicturePtr pMaskPicture,
16 PicturePtr pDstPicture)
17 {
18 return FALSE;
19 }
20
21 void xorg_composite(struct exa_context *exa,
22 struct exa_pixmap_priv *dst,
23 int srcX, int srcY, int maskX, int maskY,
24 int dstX, int dstY, int width, int height)
25 {
26 }
27