/* Copy potentially with the blitter:
*/
st_miptree_image_copy(pipe,
- stObj->mt,
- stImage->face,
- stImage->level, stImage->mt);
+ stObj->mt, /* dest miptree */
+ stImage->face, stImage->level,
+ stImage->mt /* src miptree */
+ );
st_miptree_release(pipe, &stImage->mt);
}
for (i = 0; i < depth; i++) {
pipe->region_copy(pipe,
dst->region, dst_offset + dst_depth_offset[i],
- 0,
- 0,
+ 0, 0, /* destX, Y */
src->region, src_offset + src_depth_offset[i],
- 0, 0, width, height);
+ 0, 0, /* srcX, Y */
+ width, height);
}
}