New comment by JamiKettunen on void-packages repository https://github.com/void-linux/void-packages/pull/37611#issuecomment-1159796715 Comment: @CameronNemo you could perhaps try the [Android 11 images courtesy of aleasto](https://sourceforge.net/projects/aleasto-lineageos/files/LineageOS%2018.1/waydroid_arm64/), they've got mesa 22.1 which could be enough to fix the graphical issues. Since installing the images seems to be a bit finicky I'd recommend the following to upgrade from the vanilla A10 images you likely `waydroid init`'ed with: ```sh rm /var/service/waydroid-container reboot # in case you already enabled swrast, undo it: sed -i /var/lib/waydroid/waydroid_base.prop \ -e '/^ro.hardware.gralloc=/ s/default/gbm/' \ -e '/^ro.hardware.egl=/ s/swiftshader/mesa/' images_url=https://sourceforge.net/projects/aleasto-lineageos/files/LineageOS%2018.1/waydroid_arm64 mkdir -p /usr/share/waydroid-extra/images curl -L $images_url/system.img/download -o /usr/share/waydroid-extra/images/system.img curl -L $images_url/vendor.img/download -o /usr/share/waydroid-extra/images/vendor.img sed -i /etc/gbinder.conf /etc/gbinder.d/anbox.conf \ -e '/^ApiLevel/ s/29/30/' -e 's/aidl2/aidl3/g' waydroid init -f ln -s /etc/sv/waydroid-container /var/service ``` Let me know how it goes!