Commit bc8f690a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

glspectrum: bind GL context when needed

parent 3ed9eb36
...@@ -403,7 +403,9 @@ static void *Thread( void *p_data ) ...@@ -403,7 +403,9 @@ static void *Thread( void *p_data )
vlc_sem_post(&p_sys->ready); vlc_sem_post(&p_sys->ready);
vlc_gl_MakeCurrent(gl);
initOpenGLScene(); initOpenGLScene();
vlc_gl_ReleaseCurrent(gl);
float height[NB_BANDS] = {0}; float height[NB_BANDS] = {0};
...@@ -413,6 +415,7 @@ static void *Thread( void *p_data ) ...@@ -413,6 +415,7 @@ static void *Thread( void *p_data )
int canc = vlc_savecancel(); int canc = vlc_savecancel();
vlc_gl_MakeCurrent(gl);
/* Manage the events */ /* Manage the events */
vout_ManageDisplay(p_sys->p_vd, true); vout_ManageDisplay(p_sys->p_vd, true);
if (p_sys->p_vd->cfg->display.width != i_last_width || if (p_sys->p_vd->cfg->display.width != i_last_width ||
...@@ -548,6 +551,7 @@ static void *Thread( void *p_data ) ...@@ -548,6 +551,7 @@ static void *Thread( void *p_data )
release: release:
window_close(&wind_ctx); window_close(&wind_ctx);
fft_close(p_state); fft_close(p_state);
vlc_gl_ReleaseCurrent(gl);
block_Release(block); block_Release(block);
vlc_restorecancel(canc); vlc_restorecancel(canc);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment