Re: [Mesa-dev] [PATCH 2/3] intel: Do temporary CPU maps of textures that are too big to GTT map.

2013-04-05 Thread Eric Anholt
Daniel Vetter dan...@ffwll.ch writes: On Tue, Apr 02, 2013 at 06:46:32PM -0700, Eric Anholt wrote: This still fails, since 8192*4bpp == 32768, which is too big to use the blitter on. Reviewed-by: Kenneth Graunke kenn...@whitecape.org --- src/mesa/drivers/dri/intel/intel_mipmap_tree.c |

Re: [Mesa-dev] [PATCH 2/3] intel: Do temporary CPU maps of textures that are too big to GTT map.

2013-04-03 Thread Daniel Vetter
On Tue, Apr 02, 2013 at 06:46:32PM -0700, Eric Anholt wrote: This still fails, since 8192*4bpp == 32768, which is too big to use the blitter on. Reviewed-by: Kenneth Graunke kenn...@whitecape.org --- src/mesa/drivers/dri/intel/intel_mipmap_tree.c | 21 + 1 file

Re: [Mesa-dev] [PATCH 2/3] intel: Do temporary CPU maps of textures that are too big to GTT map.

2013-04-03 Thread Daniel Vetter
On Tue, Apr 02, 2013 at 06:46:32PM -0700, Eric Anholt wrote: This still fails, since 8192*4bpp == 32768, which is too big to use the blitter on. Meh, I should take coffee first before doing reviews ... Iirc on gen4+ for tiled src/dst the blt stride limit is 128k (since the stride is supplied

[Mesa-dev] [PATCH 2/3] intel: Do temporary CPU maps of textures that are too big to GTT map.

2013-04-02 Thread Eric Anholt
This still fails, since 8192*4bpp == 32768, which is too big to use the blitter on. Reviewed-by: Kenneth Graunke kenn...@whitecape.org --- src/mesa/drivers/dri/intel/intel_mipmap_tree.c | 21 + 1 file changed, 21 insertions(+) diff --git