Am 06.01.2011 07:14, schrieb Arthur Huillet:
> 
> It hasn't been committed into master yet but I think the patch at 
> https://bugs.freedesktop.org/show_bug.cgi?id=32579
> should go into 7.9.1 and 7.10. Failing that, the problem might be present on 
> e.g. the current Ubuntu forever.
> 

What about applications that create lots of narrow, long, but still
small textures? For those we would still do tiling, and use 1 MB for
each 1x1024 texture.

How about changing

if (width0 < 1024 && height0 < 1024)

to

if (width0 * height0 < 1024 * 1024)


Philipp
_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to