ChanServ changed the topic of #lima to: Development channel for open source lima driver for ARM Mali4** GPUs - Kernel driver has landed in mainline, userspace driver is part of mesa - Logs at https://oftc.irclog.whitequark.org/lima/
<anarsoul>
enunes: I think we should disable mipmapping for linear textures. It's currently broken and tbh I don't see a sane way to implement it
<anarsoul>
since each level has to be renderable, its dimentions must be a multiply of 16. This requirement is always satisfied for tiled textures
<anarsoul>
However for linear textures we specify stride for level 0. There is no way to specify it for higher levels, and as far as I understand it is calculated by minifying stride of previous level
<anarsoul>
so in order for each level to be renderable, the highest level has to have a stride of 16
<anarsoul>
which essentially blows up level 0 size by factor of 256 (16x16)