diff options
author | Eric Anholt <[email protected]> | 2012-10-31 14:42:39 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2013-03-01 11:50:03 -0800 |
commit | 973ddc897d48548fe66f739d703d2e3808de04d1 (patch) | |
tree | 7657f1e34078f2466ae56549db74c79fdff2a513 /src/mesa/drivers/dri/intel/intel_regions.h | |
parent | 6d6bd2ac7ccf4e78f857cc114c04a840ba6785dd (diff) |
intel: Fix software copying of miptree faces for weird formats.
Now that we have W-tiled S8, we can't just region_map and poke at bits --
there has to be some swizzling. Rely on intel_miptree_map to get that job
done. This should also get the highest performance path we know of for the
mapping (interesting if I get around to finishing movntdqa some day).
v2: Fix stale name of the bit in a comment.
Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/intel/intel_regions.h')
-rw-r--r-- | src/mesa/drivers/dri/intel/intel_regions.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_regions.h b/src/mesa/drivers/dri/intel/intel_regions.h index 28d581c800c..93181414c91 100644 --- a/src/mesa/drivers/dri/intel/intel_regions.h +++ b/src/mesa/drivers/dri/intel/intel_regions.h @@ -123,16 +123,6 @@ intel_region_copy(struct intel_context *intel, bool flip, GLenum logicop); -void _mesa_copy_rect(GLubyte * dst, - GLuint cpp, - GLuint dst_pitch, - GLuint dst_x, - GLuint dst_y, - GLuint width, - GLuint height, - const GLubyte * src, - GLuint src_pitch, GLuint src_x, GLuint src_y); - void intel_region_get_tile_masks(struct intel_region *region, uint32_t *mask_x, uint32_t *mask_y, |