Re: [PATCH 1/2] compositor: Destroy renderer in weston_compositor_shutdown()

2013-12-20 Thread Jason Ekstrand
Ander, I don't neciserally disagree we with this change, but shouldn't the GL renderer clean up after itself better? --Jason On Dec 20, 2013 1:07 PM, "Ander Conselvan de Oliveira" wrote: > From: Ander Conselvan de Oliveira > > Currently we destroy the renderer before the outputs are destroyed, b

[PATCH 1/2] compositor: Destroy renderer in weston_compositor_shutdown()

2013-12-20 Thread Ander Conselvan de Oliveira
From: Ander Conselvan de Oliveira Currently we destroy the renderer before the outputs are destroyed, but that sometimes leads to an error since a reference to the renderer is necessary in order to destroy a gl_renderer_output. Since destroying the renderer is common among all backends, just mov