From: Ian Romanick <[email protected]>
---
src/mesa/drivers/dri/i965/brw_blorp.c | 2 ++
src/mesa/drivers/dri/i965/intel_fbo.c | 3 +++
2 files changed, 5 insertions(+)
diff --git a/src/mesa/drivers/dri/i965/brw_blorp.c
b/src/mesa/drivers/dri/i965/brw_blorp.c
index 92d1d2a..9c9b859 100644
--- a/src/mesa/drivers/dri/i965/brw_blorp.c
+++ b/src/mesa/drivers/dri/i965/brw_blorp.c
@@ -707,6 +707,8 @@ brw_blorp_framebuffer(struct brw_context *brw,
}
}
+ /* try_blorp_blit should always be successful for color blits. */
+ assert(!(mask & GL_COLOR_BUFFER_BIT));
return mask;
}
diff --git a/src/mesa/drivers/dri/i965/intel_fbo.c
b/src/mesa/drivers/dri/i965/intel_fbo.c
index caf182c..f0f87bb 100644
--- a/src/mesa/drivers/dri/i965/intel_fbo.c
+++ b/src/mesa/drivers/dri/i965/intel_fbo.c
@@ -932,6 +932,9 @@ intel_blit_framebuffer(struct gl_context *ctx,
if (mask == 0x0)
return;
+ /* brw_blorp_framebuffer should always be successful for color blits. */
+ assert(!(mask & GL_COLOR_BUFFER_BIT));
+
mask = _mesa_meta_BlitFramebuffer(ctx, readFb, drawFb,
srcX0, srcY0, srcX1, srcY1,
dstX0, dstY0, dstX1, dstY1,
--
2.9.4
_______________________________________________
mesa-dev mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-dev