Jonas Pfeil

Results 6 comments of Jonas Pfeil

This is an interesting case. 1. What is the memory size for the GPU (cma=xxxM@yyyM in cmdline.txt, the xxx is the interesting part). The dmesg errors are the result of...

The `gpu_mem` setting is for the closed source driver, so it is wasted with the open source driver. It can be set to `16 `if you don't do video decoding...

A implementation is here https://github.com/jonasarrow/mesa_freedesktop/commit/48d5a1c76d2e843cf9054524e9aba4c9d6b8fbc8 . Not all wrapping/clamping modes implemented, LOD is completely ignored and interpolation is NEAREST. For the X11-desktop it works. I think, we could even support...

Commit https://github.com/jonasarrow/mesa_freedesktop/commit/5459cb8a203d0e23f94187ffd7180a7acc1949d4 is a little bit faster (omitting ITOF twice) and fixes bad addressing which cause funny rendering under X. If we want to support different strides, a field has...

The hardware is precise to the first some digits. The range reduction does not help. (If you look at the test cases, they already operate on a limited range.) The...

Could it work by setting the cs as the vs (no cs in this case), using a trivial rgba(1,1,1,1) fs and rendering to a downscaled render target, so that a...