nouveau: Turn off debug cannon.
authorYounes Manton <younes.m@gmail.com>
Wed, 24 Jun 2009 23:38:52 +0000 (19:38 -0400)
committerYounes Manton <younes.m@gmail.com>
Tue, 30 Jun 2009 02:22:25 +0000 (22:22 -0400)
src/gallium/drivers/nv04/nv04_surface_2d.c

index 5afd028ddd2a0e85c3d288a3a6d26bb84699930a..f315cf54f05a74c4d967dc1906014b84c9d20a48 100644 (file)
@@ -267,8 +267,7 @@ nv04_surface_copy(struct nv04_surface_2d *ctx, struct pipe_surface *dst,
         * to NV_MEMORY_TO_MEMORY_FORMAT in this case.
         */
        if ((src->offset & 63) || (dst->offset & 63) ||
-           (src_pitch & 63) || (dst_pitch & 63) ||
-           debug_get_bool_option("NOUVEAU_NO_COPYBLIT", FALSE)) {
+           (src_pitch & 63) || (dst_pitch & 63)) {
                nv04_surface_copy_m2mf(ctx, dst, dx, dy, src, sx, sy, w, h);
                return;
        }