diff options
author | Jordan Justen <[email protected]> | 2016-11-15 02:18:25 -0800 |
---|---|---|
committer | Jordan Justen <[email protected]> | 2016-11-15 14:27:27 -0800 |
commit | 0ac57afa6fbe59e9fd8eef38365cb3da8ec67f95 (patch) | |
tree | 530d58eb7b2dfebe684442413269d5e70aa05583 | |
parent | 75a39cca8d046749b216046ef5651dda5c451635 (diff) |
isl: Fix height calculation in isl_msaa_interleaved_scale_px_to_sa
No known fixed tests, but it looks like a typo from:
commit 8ac99eabb6570f0f3c5f7d7da1332a99ce636362
intel/isl: Add a helper for getting the size of an interleaved pixel
Cc: "13.0" <[email protected]>
Signed-off-by: Jordan Justen <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
-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 7831c5e5be2..32463b12982 100644 --- a/src/intel/isl/isl.c +++ b/src/intel/isl/isl.c @@ -339,7 +339,7 @@ isl_msaa_interleaved_scale_px_to_sa(uint32_t samples, if (width) *width = isl_align(*width, 2) * px_size_sa.width; if (height) - *height = isl_align(*height, 2) * px_size_sa.width; + *height = isl_align(*height, 2) * px_size_sa.height; } static enum isl_array_pitch_span |