summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-26 15:51:47 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-26 15:51:47 +0000
commit92542f710b754d56957b267ba5839846a6126190 (patch)
tree8836dad88270b83cc02d01856cf2fc0630617d30 /libvo
parentdb9f690747581b906025ae45b5ae7b1136dfaf36 (diff)
downloadmpv-92542f710b754d56957b267ba5839846a6126190.tar.bz2
mpv-92542f710b754d56957b267ba5839846a6126190.tar.xz
Remove now unused variable
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23668 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_gl2.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libvo/vo_gl2.c b/libvo/vo_gl2.c
index 55e2e4334d..4e5db299c9 100644
--- a/libvo/vo_gl2.c
+++ b/libvo/vo_gl2.c
@@ -93,7 +93,6 @@ struct TexSquare
GLubyte *texture;
GLuint texobj;
GLuint uvtexobjs[2];
- int isTexture;
GLfloat fx, fy, fw, fh;
int isDirty;
int dirtyXoff, dirtyYoff, dirtyWidth, dirtyHeight;
@@ -248,7 +247,6 @@ static int initTextures(void)
tsq->fh = texpercy;
tsq->isDirty=GL_FALSE;
- tsq->isTexture=GL_FALSE;
tsq->texobj=0;
tsq->uvtexobjs[0] = tsq->uvtexobjs[1] = 0;
tsq->dirtyXoff=0; tsq->dirtyYoff=0; tsq->dirtyWidth=-1; tsq->dirtyHeight=-1;
@@ -264,7 +262,6 @@ static int initTextures(void)
glBindTexture (GL_TEXTURE_2D, tsq->uvtexobjs[1]);
ActiveTexture(GL_TEXTURE0);
}
- tsq->isTexture=GL_TRUE;
glCreateClearTex(GL_TEXTURE_2D, gl_internal_format, GL_LINEAR,
texture_width, texture_height, 0);