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/brw_context.c | |
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/brw_context.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index 402d936bd70..171501f69fe 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -245,6 +245,7 @@ brw_init_driver_functions(struct brw_context *brw, intelInitTextureImageFuncs(functions); intelInitTextureSubImageFuncs(functions); intelInitTextureCopyImageFuncs(functions); + intelInitCopyImageFuncs(functions); intelInitClearFuncs(functions); intelInitBufferFuncs(functions); intelInitPixelFuncs(functions); |