diff options
author | Jason Ekstrand <[email protected]> | 2014-06-27 16:05:37 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2014-08-11 11:26:14 -0700 |
commit | 410fea8dd9cc0b1b500477a8b6f68c950f7c895a (patch) | |
tree | c7ca3014f76a1dea130174a3048d2fdab1461765 /src/mesa/drivers/dri/i965/Makefile.sources | |
parent | 8ad7c1903d0f77d3b76e5431f3164323ac48adea (diff) |
i965: Add support for ARB_copy_image
This, together with the meta path, provides a complete implemetation of
ARB_copy_image.
v2: Add a fallback memcpy path for when the texture is too big for the
blitter
v3: Properly support copying between two places on the same texture in the
memcpy fallback
v4: Properly handle blit between the same two images in the fallback path
v5: Properly handle blit between the same two compressed images in the
fallback path
v6: Fix a typo in a comment
Signed-off-by: Jason Ekstrand <[email protected]>
Reviewed-by: Neil Roberts <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/Makefile.sources')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.sources b/src/mesa/drivers/dri/i965/Makefile.sources index ee28dd98ef3..1e5d1c68129 100644 --- a/src/mesa/drivers/dri/i965/Makefile.sources +++ b/src/mesa/drivers/dri/i965/Makefile.sources @@ -8,6 +8,7 @@ i965_FILES = \ intel_blit.c \ intel_buffer_objects.c \ intel_buffers.c \ + intel_copy_image.c \ intel_debug.c \ intel_extensions.c \ intel_fbo.c \ |