Re: [Mesa-dev] [PATCH 09/30] i965/miptree: Move color resolve on map to intel_miptree_map

2017-06-02 Thread Jason Ekstrand
On Fri, Jun 2, 2017 at 3:03 PM, Chad Versace wrote: > On Fri 26 May 2017, Jason Ekstrand wrote: > > None of the other methods such as blit work with CCS either so we need > > to do the resolve for all maps. > > Not exactly. No down-resolve is needed for maps with >

Re: [Mesa-dev] [PATCH 09/30] i965/miptree: Move color resolve on map to intel_miptree_map

2017-06-02 Thread Chad Versace
On Fri 26 May 2017, Jason Ekstrand wrote: > None of the other methods such as blit work with CCS either so we need > to do the resolve for all maps. Not exactly. No down-resolve is needed for maps with GL_MAP_INVALIDATE_RANGE_BIT. But that's a separate problem for a separate patch. Reviewed-by:

[Mesa-dev] [PATCH 09/30] i965/miptree: Move color resolve on map to intel_miptree_map

2017-05-26 Thread Jason Ekstrand
None of the other methods such as blit work with CCS either so we need to do the resolve for all maps. This change also makes us only resolve the one slice we're mapping and not the entire image. --- src/mesa/drivers/dri/i965/intel_mipmap_tree.c | 6 +- 1 file changed, 1 insertion(+), 5