14:00karolherbst: if I need a slab allocator in the frontend, what's the proper gallium thing to use for it?
14:00karolherbst: should also be able to allocate new resources on demand
14:22karolherbst: maybe just `pb_slab.h` is enough
14:23karolherbst: only need one heap and one order, but maybe I can use it for more things later on
16:17zmike: I think generally you should let drivers handle that?
17:51karolherbst: maybe?
17:51karolherbst: I mean.. I can allocate 0x10 bytes a couple of times, shouldn't be a huge problem
18:23mareko: the minimum allocation size is 256B for the amdgpu winsys, and 512B for the radeon winsys if GPU VM is supported
19:43karolherbst: yeah.. but I just need a bunch of 10b randomly for timestamp queries
19:43karolherbst: but not sure I can actually use get_query_result_resource after all, because llvmpipe implements it as a busy wait thing..
19:44karolherbst: and the results I get out of iris are also a bit weird
19:44karolherbst: works with zink tho
22:15zmike: as expected