diff options
author | Jason Ekstrand <[email protected]> | 2018-05-25 12:27:17 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2018-05-25 14:01:44 -0700 |
commit | ae514ca695a599cdd0b7c22f48fd4d721671b0cb (patch) | |
tree | 4e4925626076b41769ea15905ba2771754e4424a /src/mesa/drivers | |
parent | 2f65c67043529f8f7fca8514f88251f935e61c2c (diff) |
intel/blorp: Support blits and clears on surfaces with offsets
For certain EGLImage cases, we represent a single slice or LOD of an
image with a byte offset to a tile and X/Y intratile offsets to the
given slice. Most of i965 is fine with this but it breaks blorp. This
is a terrible way to represent slices of a surface in EGL and we should
stop some day but that's a very scary and thorny path. This gets blorp
to start working with those surfaces and fixes some dEQP EGL test bugs.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=106629
Cc: [email protected]
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_blorp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_blorp.c b/src/mesa/drivers/dri/i965/brw_blorp.c index d7a2cb25c67..8c6d77e1b7d 100644 --- a/src/mesa/drivers/dri/i965/brw_blorp.c +++ b/src/mesa/drivers/dri/i965/brw_blorp.c @@ -152,6 +152,8 @@ blorp_surf_for_miptree(struct brw_context *brw, .mocs = brw_get_bo_mocs(devinfo, mt->bo), }, .aux_usage = aux_usage, + .tile_x_sa = mt->level[*level].level_x, + .tile_y_sa = mt->level[*level].level_y, }; if (mt->format == MESA_FORMAT_S_UINT8 && is_render_target && |