diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2004-08-26 17:57:50 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2004-08-26 17:57:50 +0000 |
commit | 85675f92c55c5ff013ea1377191f9821dec21d7e (patch) | |
tree | 82732474c53e1aa2fe79aa324ac67b2dc390deea /src | |
parent | 9f6ed0fb794009567dcfd8d199ef3ef42a83fad0 (diff) | |
download | xine-lib-85675f92c55c5ff013ea1377191f9821dec21d7e.tar.gz xine-lib-85675f92c55c5ff013ea1377191f9821dec21d7e.tar.bz2 |
Implement configure option --disable-opengl
Separate opengl configure tests into opengl.m4
Fix a segfault in debug build
CVS patchset: 6905
CVS date: 2004/08/26 17:57:50
Diffstat (limited to 'src')
-rw-r--r-- | src/video_out/video_out_opengl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_out/video_out_opengl.c b/src/video_out/video_out_opengl.c index 99016c182..52496b24f 100644 --- a/src/video_out/video_out_opengl.c +++ b/src/video_out/video_out_opengl.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out_opengl.c,v 1.38 2004/04/30 22:12:15 jcdutton Exp $ + * $Id: video_out_opengl.c,v 1.39 2004/08/26 17:57:53 valtri Exp $ * * video_out_glut.c, glut based OpenGL rendering interface for xine * Matthias Hopf <mat@mshopf.de> @@ -557,7 +557,6 @@ static void opengl_render_image (opengl_driver_t *this, opengl_frame_t *frame, glXDestroyContext (this->display, this->context); } - DEBUGF ((stderr, "screen %dx%d\n", ((Screen *) this->screen)->width, ((Screen *)this->screen)->height)); DEBUGF ((stderr, "glXChooseVisual\n")); this->vinfo = glXChooseVisual (this->display, this->screen, glxAttrib); |