diff options
author | Eric Anholt <eric@anholt.net> | 2009-07-16 11:40:51 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2009-07-16 11:48:33 -0700 |
commit | 8dd7ccf37e2de6d80b556e6d18af244cefc1e417 (patch) | |
tree | cf1fa14e7e2f68d6cbd1838b63dab1495b3e7fe0 /src/i830.h | |
parent | a1e6abb5ca89d699144d10fdc4309b3b78f2f7a9 (diff) |
Fix 915-class Render after the 8xx-class Render fix.
The two shared i830_composite.c, so giving i830 atomic batch support
triggered anger about starting i830's atomic area while in i915's atomic
area. Instead, split the emit-a-primitive stuff from the state emission.
Diffstat (limited to 'src/i830.h')
-rw-r--r-- | src/i830.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -788,6 +788,9 @@ i830_transform_is_affine (PictTransformPtr t); void i830_composite(PixmapPtr pDst, int srcX, int srcY, int maskX, int maskY, int dstX, int dstY, int w, int h); +void i830_emit_composite_primitive(PixmapPtr pDst, int srcX, int srcY, + int maskX, int maskY, int dstX, int dstY, + int w, int h); void i830_done_composite(PixmapPtr pDst); /* i915_render.c */ Bool i915_check_composite(int op, PicturePtr pSrc, PicturePtr pMask, |