diff options
author | Jason Ekstrand <[email protected]> | 2016-07-12 14:17:18 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-07-13 11:47:37 -0700 |
commit | 8c76b9bdce4c38ab7a600706c4e0151557d75fc5 (patch) | |
tree | b0e82dd9569076710b062b8b5563f092cb991a43 /src/intel | |
parent | cf9ff082b48779c52fa6b82dc4bb163303287772 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/isl/isl.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |