Module: Mesa Branch: master Commit: 94389943b63bf8e25fecbbdf357ae5da100d2fc9 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=94389943b63bf8e25fecbbdf357ae5da100d2fc9
Author: Jason Ekstrand <[email protected]> Date: Mon Oct 23 15:51:21 2017 -0700 i965/blorp: Use blorp_to_isl_format for src_isl_format in blit_miptrees Reviewed-by: Topi Pohjolainen <[email protected]> Cc: [email protected] --- src/mesa/drivers/dri/i965/brw_blorp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/brw_blorp.c b/src/mesa/drivers/dri/i965/brw_blorp.c index ed4f9870f2..f7d128d6c3 100644 --- a/src/mesa/drivers/dri/i965/brw_blorp.c +++ b/src/mesa/drivers/dri/i965/brw_blorp.c @@ -315,7 +315,8 @@ brw_blorp_blit_miptrees(struct brw_context *brw, src_format = dst_format = MESA_FORMAT_R_FLOAT32; } - enum isl_format src_isl_format = brw_isl_format_for_mesa_format(src_format); + enum isl_format src_isl_format = + brw_blorp_to_isl_format(brw, src_format, false); enum isl_aux_usage src_aux_usage = intel_miptree_texture_aux_usage(brw, src_mt, src_isl_format); /* We do format workarounds for some depth formats so we can't reliably _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
