diff --git a/doc/sources/installation/installation-rpi.rst b/doc/sources/installation/installation-rpi.rst index 8c9420ae8..d4f83cf2f 100644 --- a/doc/sources/installation/installation-rpi.rst +++ b/doc/sources/installation/installation-rpi.rst @@ -61,6 +61,20 @@ Raspberry Pi 4 headless installation on Raspbian Buster #. Now simply follow the `Raspberry Pi 1-4 installation`_ instructions to install Kivy. +#. If you are getting output similar to this when running your app:: + + [INFO ] GL: OpenGL vendor + [INFO ] GL: OpenGL renderer + + Then it means that the renderer is **NOT** hardware accelerated. This can be fixed by adding your user to the render group:: + + sudo adduser "$USER" render + + You will then see an output similar to this:: + + [INFO ] GL: OpenGL vendor + [INFO ] GL: OpenGL renderer + _`Raspberry Pi 1-4 installation` on Raspbian Jessie/Stretch/Buster ------------------------------------------------------------------