Steven Newbury
Steven Newbury
Wouldn't it be possible to use the Intel userptr API to bind the PBO directly to the drawable? That way only synchronisation and resizing needs to be handled during an...
I actually just tried building PyPy from the py3.3 branch build succeeded but the resultant pypy didn't work right now. Such is life on the bleeding edge.
Got py3.3 branch to compile with "shadowstack". No idea why it's not working with asmgcroot with the same gcc version as pypy(2). I'll give it a go with bedup once...
No idea why, but I can't build pypy3 (from py3.3 branch) without it hard coding the build tree for its run-time resources! I'm on Gentoo as you probably gathered, so...
Another issue is window resizing isn't affecting the render resolution, at least in Sway. If resizing worked, the code to determine dpi/scaling could be factored out and be called on...
I've not found a option which affects the initial internal resolution with wayland/vulkan. The surface gets resized to the Vulkan swap chain resolution which is the only way I've found...
The header issue is not really a problem if the installed headers are wrapped for multilib. I'll see about getting mpfr and gmp into multilib-master...
Also affects Alien Swarm on Steam. I'm not sure what's changed here. TGSI tex op 182 is TG4. It's falling through the switch in ttn_tex() in tgsi_to_nir.c. From what I...
@dennismayr I tried it. It made no difference.
I've fixed it in mesa: ``` --- ./src/gallium/auxiliary/nir/tgsi_to_nir.c~ 2021-06-07 17:20:33.000000000 +0100 +++ ./src/gallium/auxiliary/nir/tgsi_to_nir.c 2021-06-07 17:22:02.296935345 +0100 @@ -1397,6 +1397,11 @@ op = nir_texop_lod; num_srcs = 1; break; + case TGSI_OPCODE_TG4:...