This is your once a month reminder to make sure your PC information is correct on your user profiles. A fresh batch of statistics is generated on the 1st of each month.
You need to be logged in to see when you last updated your PC info!
You can see the statistics any time on this page.
While we don't currently have a drop-off implemented for old/stale data, it will be implemented next year. If you want to make sure you're included at any time, clicking update without any changes will update the last time you edited them. The drop-off for old data will be done in months, since people aren't likely to change hardware that often.
Some you may have missed, popular articles from the last month:
So are you just launching with an LD_PRELOAD? Or do you change the .desktop file? I was going to ask about steam command parameters, but I don't think you use it due to DRM, right?
Oh, actually I was thinking of xorg drivers. But yeah they split them up into multiple kernel modules/xorg drivers. Instead of just 'radeon'.
I'm using LD_LIBRARY_PATH and a bunch of variables needed for OpenGL and Vulkan custom locations. See in the linked wiki page. I'll update it soon and will also put my common scripts somewhere so you can see examples.
I.e. I made a script mesa_run.sh which launches its parameter with custom mesa, and I simply use that when I want to run something using that custom Mesa, rather default system one. You surely can use the same idea in desktop launchers and other scripts.
Last edited by Shmerl on 28 December 2017 at 11:07 pm UTC
mesa_run.sh
#!/bin/bash
export mesa_dir=${mesa_dir:-"mesa-master"}
if [[ "$1" == "32" ]]; then
arch_dir="x86"
vk_arch="i686"
shift
else
arch_dir="x86_64"
vk_arch="x86_64"
fi
mesa_env="LD_LIBRARY_PATH=/opt/${mesa_dir}/${arch_dir}:$LD_LIBRARY_PATH LIBGL_DRIVERS_PATH=/opt/${mesa_dir}/${arch_dir} EGL_DRIVERS_PATH=/opt/${mesa_dir}/${arch_dir} VK_ICD_FILENAMES=/opt/${mesa_dir}/${arch_dir}/radeon_icd.${vk_arch}.json"
echo "Mesa env:"
echo "${mesa_env}"
echo "==========================================="
export ${mesa_env}
$@
Last edited by Shmerl on 28 December 2017 at 11:10 pm UTC
and the NVIDIA GeForce 920MX;both areit is missing from the computer specifications.Last edited by Cyba.Cowboy on 30 December 2017 at 9:04 am UTC
AMD RX 460 was the last card I used.
That's strange, since Polaris is quite well supported. I didn't have any major issues with RX 480. What exactly was the problem with your card?
Compiling for new users is really annoying when for this users must be only download and install (ppa is acceptable)
^_^