summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r300/r300_texcopy.c
diff options
context:
space:
mode:
authorMaciej Cencora <m.cencora@gmail.com>2010-01-18 22:52:40 +0100
committerMaciej Cencora <m.cencora@gmail.com>2010-01-19 23:38:34 +0100
commit0174dac5f3bd47c0a2dcd40319bff288c83ee96a (patch)
tree62d9b7bbf211d1731cebe5c53655f0ab497a48a5 /src/mesa/drivers/dri/r300/r300_texcopy.c
parentac8afd401fa5840cf726184329dac75197a50c2e (diff)
r300/r600: move some bo offsets checking to blit code
In preperation for texcopy code sharing.
Diffstat (limited to 'src/mesa/drivers/dri/r300/r300_texcopy.c')
-rw-r--r--src/mesa/drivers/dri/r300/r300_texcopy.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_texcopy.c b/src/mesa/drivers/dri/r300/r300_texcopy.c
index 716a38a0a4..c7d57fb5de 100644
--- a/src/mesa/drivers/dri/r300/r300_texcopy.c
+++ b/src/mesa/drivers/dri/r300/r300_texcopy.c
@@ -68,10 +68,6 @@ do_copy_texsubimage(GLcontext *ctx,
intptr_t src_offset = rrb->draw_offset;
intptr_t dst_offset = radeon_miptree_image_offset(timg->mt, _mesa_tex_target_to_face(target), level);
- if (src_offset % 32 || dst_offset % 32) {
- return GL_FALSE;
- }
-
if (0) {
fprintf(stderr, "%s: copying to face %d, level %d\n",
__FUNCTION__, _mesa_tex_target_to_face(target), level);