1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-20 18:28:01 +00:00

Check setGlWindow return value to fail properly instead of crashing if e.g.

no OpenGL support is available.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29612 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2009-09-01 15:20:05 +00:00
parent 986499e97e
commit a1f744cb07
2 changed files with 4 additions and 2 deletions

View File

@ -571,7 +571,8 @@ config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uin
glconfig: glconfig:
if (vo_config_count) if (vo_config_count)
uninitGl(); uninitGl();
setGlWindow(&gl_vinfo, &gl_context, vo_window); if (setGlWindow(&gl_vinfo, &gl_context, vo_window) == SET_WINDOW_FAILED)
return -1;
initGl(vo_dwidth, vo_dheight); initGl(vo_dwidth, vo_dheight);
return 0; return 0;

View File

@ -637,7 +637,8 @@ config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uin
#endif #endif
return -1; return -1;
setGlWindow(&gl_vinfo, &gl_context, vo_window); if (setGlWindow(&gl_vinfo, &gl_context, vo_window) == SET_WINDOW_FAILED)
return -1;
glVersion = glGetString(GL_VERSION); glVersion = glGetString(GL_VERSION);