summaryrefslogtreecommitdiffstats
path: root/libvo/vo_gl2.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-08-14 19:24:49 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-08-14 19:24:49 +0000
commitc7888c0a7f5315df7e22997afd1ed3ee842dd9f8 (patch)
tree6299c3c58666e61823d958ce089fb10e8d20205c /libvo/vo_gl2.c
parentf1fcbe1d1183e7dd7af7cbd6bc512ceef164e8fa (diff)
downloadmpv-c7888c0a7f5315df7e22997afd1ed3ee842dd9f8.tar.bz2
mpv-c7888c0a7f5315df7e22997afd1ed3ee842dd9f8.tar.xz
remove/move some unused headers/variables/code
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16222 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_gl2.c')
-rw-r--r--libvo/vo_gl2.c15
1 files changed, 4 insertions, 11 deletions
diff --git a/libvo/vo_gl2.c b/libvo/vo_gl2.c
index edebfdf417..c539d815bd 100644
--- a/libvo/vo_gl2.c
+++ b/libvo/vo_gl2.c
@@ -7,8 +7,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <math.h>
-#include <errno.h>
#include "config.h"
#include "mp_msg.h"
@@ -20,8 +18,6 @@
#include "Gui/interface.h"
#endif
-#include <errno.h>
-
#include "gl_common.h"
#include "aspect.h"
@@ -46,11 +42,6 @@ LIBVO_EXTERN(gl2)
/* local data */
static unsigned char *ImageData=NULL;
-/* X11 related variables */
-//static Window vo_window;
-
-//static int texture_id=1;
-
#ifdef GL_WIN32
static int gl_vinfo = 0;
static HGLRC gl_context = 0;
@@ -150,7 +141,7 @@ static int initTextures()
{
struct TexSquare *tsq=0;
GLfloat texpercx, texpercy;
- int s, i=0;
+ int s;
int x=0, y=0;
GLint format=0;
GLenum err;
@@ -467,12 +458,14 @@ static void drawTextureDisplay ()
mp_msg (MSGT_VO, MSGL_V, "GLERROR glBindTexture := GL_INVALID_OPERATION, texnum x=%d, y=%d, texture=%d\n", x, y, square->texobj);
}
+#ifndef NDEBUG
if(glIsTexture(square->texobj) == GL_FALSE)
{
square->isTexture=GL_FALSE;
mp_msg (MSGT_VO, MSGL_ERR, "GLERROR ain't a texture(update): texnum x=%d, y=%d, texture=%d\n",
x, y, square->texobj);
}
+#endif
if(square->isDirty)
{
@@ -970,7 +963,7 @@ static int preinit(const char *arg)
if(arg)
{
mp_msg(MSGT_VO, MSGL_FATAL, "[gl2] Unknown subdevice: %s\n",arg);
- return ENOSYS;
+ return -1;
}
if( !vo_init() ) return -1; // Can't open X11
return 0;