Bug 789983 - remove unused field. r=bjacob.

This commit is contained in:
Rafael Ávila de Espíndola 2012-09-11 08:59:34 -04:00
parent a595b918b4
commit 305b467282

View File

@ -1025,15 +1025,14 @@ private:
GLContext* aContext,
gfxASurface* aSurface,
GLXPixmap aPixmap,
TextureImage::Flags aFlags = TextureImage::NoFlags,
LibType aLibType = GLXLibrary::OPENGL_LIB)
TextureImage::Flags aFlags,
LibType aLibType)
: TextureImage(aSize, aWrapMode, aContentType, aFlags)
, mGLContext(aContext)
, mUpdateSurface(aSurface)
, mPixmap(aPixmap)
, mInUpdate(false)
, mTexture(aTexture)
, mLibType(aLibType)
, sGLXLib(sGLXLibrary[aLibType])
{
if (aSurface->GetContentType() == gfxASurface::CONTENT_COLOR_ALPHA) {
@ -1048,7 +1047,6 @@ private:
GLXPixmap mPixmap;
bool mInUpdate;
GLuint mTexture;
LibType mLibType;
GLXLibrary& sGLXLib;
virtual void ApplyFilter()