From 8c76b9bdce4c38ab7a600706c4e0151557d75fc5 Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Tue, 12 Jul 2016 14:17:18 -0700 Subject: [PATCH] isl: Use bpb for determining YUV image padding When we initially dropped bpb in favor of bs, we accidentally didn't change this one line properly. This brings it back to what it should be. Reviewed-by: Chad Versace --- src/intel/isl/isl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/isl/isl.c b/src/intel/isl/isl.c index 4205c1c03a4..29b33d92b11 100644 --- a/src/intel/isl/isl.c +++ b/src/intel/isl/isl.c @@ -996,7 +996,7 @@ isl_apply_surface_padding(const struct isl_device *dev, * padding requirements. */ if (isl_format_is_yuv(info->format) && - (fmtl->bs == 96 || fmtl->bs == 48|| fmtl->bs == 24)) { + (fmtl->bpb == 96 || fmtl->bpb == 48|| fmtl->bpb == 24)) { *total_h_el += 1; *pad_bytes += 16; } -- 2.30.2