mirror of
https://github.com/brl/mutter.git
synced 2025-07-05 10:31:18 +00:00
1b78ca8c5eef39831639a0bde8d613cd1bb024dc

If texture allocation fails (e.g. on an old GPU with size limit 2048)
then `update_fbo` would return `FALSE` but leaves `priv->offscreen`
as non-NULL. So the next paint will try to use the offscreen with a
`NULL` texture and crashes. The solution is simply to ensure that
`priv->offscreen` is NULL if there is no `priv->texture`, so the default
(non-offscreen) paint path gets used instead.
Bug reported and fix provided by Gert van de Kraats.
https://launchpad.net/bugs/1795774
(cherry picked from commit f31cf0c3ef
)
Description
Languages
C
98.9%
Meson
0.7%
Python
0.3%