diff options
author | Jason Ekstrand <[email protected]> | 2018-05-11 10:30:16 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2018-05-22 15:46:29 -0700 |
commit | 8162256b01f891758d14606ce15a2a9e792ff470 (patch) | |
tree | 7320c80ea10e6bfa08509ba9372cedbb1f7c920a /src | |
parent | e596563b08abab5e70ee22664bc3228c42ea6a7f (diff) |
i965: Don't fall back to the blitter in BlitFramebuffer
On gen4-5, we try the blitter before we even try blorp. On newer
platforms, blorp can do everything the blitter can so there's no point
in even having the blitter fall-back path.
Reviewed-by: Topi Pohjolainen <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_fbo.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_fbo.c b/src/mesa/drivers/dri/i965/intel_fbo.c index ca4008f8a03..fb84b738c08 100644 --- a/src/mesa/drivers/dri/i965/intel_fbo.c +++ b/src/mesa/drivers/dri/i965/intel_fbo.c @@ -915,14 +915,6 @@ intel_blit_framebuffer(struct gl_context *ctx, assert(!"Invalid blit"); } - /* Try using the BLT engine. */ - mask = intel_blit_framebuffer_with_blitter(ctx, readFb, drawFb, - srcX0, srcY0, srcX1, srcY1, - dstX0, dstY0, dstX1, dstY1, - mask); - if (mask == 0x0) - return; - _swrast_BlitFramebuffer(ctx, readFb, drawFb, srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, |