intel/blorp_blit: Fix max blit size for gen6

Fixes ES3-CTS.gtf.GL3Tests.framebuffer_blit.framebuffer_blit_functionality_stencil_blit

Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Jordan Justen 2016-12-23 18:41:15 -08:00
parent b5bb8b54cf
commit 097c9dc2d4
1 changed files with 3 additions and 2 deletions

View File

@ -1522,10 +1522,11 @@ static unsigned
get_max_surface_size(const struct gen_device_info *devinfo,
const struct blorp_params *params)
{
const unsigned max = devinfo->gen >= 7 ? 16384 : 8192;
if (split_blorp_blit_debug && can_shrink_surfaces(params))
return 16384 >> 4; /* A smaller restriction when debug is enabled */
return max >> 4; /* A smaller restriction when debug is enabled */
else
return 16384;
return max;
}
struct blt_axis {