diff options
author | Topi Pohjolainen <[email protected]> | 2017-08-19 09:22:22 +0300 |
---|---|---|
committer | Andres Gomez <[email protected]> | 2017-08-25 16:03:36 +0300 |
commit | b85502603f5a5f653ee11b97d68a77d129859ec1 (patch) | |
tree | 87ab5b637e15d607387ec21795ea528f7f4398ef /src/intel | |
parent | 4fce4ce271b42357df50ef6d62a1481e41655f00 (diff) |
intel/blorp: Adjust intra-tile x when faking rgb with red-only
v2 (Jason): Adjust directly in surf_fake_rgb_with_red()
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=101910
CC: [email protected]
Reviewed-by: Jason Ekstrand <[email protected]>
Signed-off-by: Topi Pohjolainen <[email protected]>
(cherry picked from commit 393ec1a5071263d300e91f43058ed3b594d41418)
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/blorp/blorp_blit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/blorp/blorp_blit.c b/src/intel/blorp/blorp_blit.c index 691564c8788..d33fde12c99 100644 --- a/src/intel/blorp/blorp_blit.c +++ b/src/intel/blorp/blorp_blit.c @@ -1555,6 +1555,7 @@ surf_fake_rgb_with_red(const struct isl_device *isl_dev, info->surf.logical_level0_px.width *= 3; info->surf.phys_level0_sa.width *= 3; + info->tile_x_sa *= 3; *x *= 3; *width *= 3; |