i965/copy_image: Use the blitter on gen5
authorJason Ekstrand <jason.ekstrand@intel.com>
Fri, 26 May 2017 19:23:05 +0000 (12:23 -0700)
committerJason Ekstrand <jason.ekstrand@intel.com>
Fri, 26 May 2017 21:44:29 +0000 (14:44 -0700)
This was just an accidental typo in the refactoring.  The intention was
to try the blitter on gen4-5, not just gen4.

Reviewed-by: Matt Turner <mattst88@gmail.com>
src/mesa/drivers/dri/i965/intel_copy_image.c

index b593c3c0edfe145d65231aa0163af374bddc5922..2ebd8d7528b2cea407c45c8318ab81bf2c594907 100644 (file)
@@ -42,7 +42,7 @@ copy_miptrees(struct brw_context *brw,
               int dst_x, int dst_y, int dst_z, unsigned dst_level,
               int src_width, int src_height)
 {
-   if (brw->gen < 5) {
+   if (brw->gen <= 5) {
       /* On gen4-5, try BLT first.
        *
        * Gen4-5 have a single ring for both 3D and BLT operations, so there's