Remove a dead function and dead var that were incorrectly left in by previous partial-reverts



git-svn-id: http://skia.googlecode.com/svn/trunk@3918 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/gl/GrGpuGL.h b/src/gpu/gl/GrGpuGL.h
index b3453a0..b22b44f 100644
--- a/src/gpu/gl/GrGpuGL.h
+++ b/src/gpu/gl/GrGpuGL.h
@@ -242,11 +242,6 @@
 
     GrGLContextInfo fGLContextInfo;
 
-    // we want to clear stencil buffers when they are created. We want to clear
-    // the entire buffer even if it is larger than the color attachment. We
-    // attach it to this fbo with no color attachment to do the initial clear.
-    GrGLuint fStencilClearFBO;
-
     bool fHWBlendDisabled;
 
     int fActiveTextureUnitIdx;
diff --git a/src/gpu/gl/GrGpuGLShaders.cpp b/src/gpu/gl/GrGpuGLShaders.cpp
index 177f48a..d32c57e 100644
--- a/src/gpu/gl/GrGpuGLShaders.cpp
+++ b/src/gpu/gl/GrGpuGLShaders.cpp
@@ -774,9 +774,6 @@
     return true;
 }
 
-void GrGpuGLShaders::postDraw() {
-}
-
 #if GR_TEXT_SCALAR_IS_USHORT
     #define TEXT_COORDS_GL_TYPE          GR_GL_UNSIGNED_SHORT
     #define TEXT_COORDS_ARE_NORMALIZED   1
diff --git a/src/gpu/gl/GrGpuGLShaders.h b/src/gpu/gl/GrGpuGLShaders.h
index bd6ccd3..cb72e2a 100644
--- a/src/gpu/gl/GrGpuGLShaders.h
+++ b/src/gpu/gl/GrGpuGLShaders.h
@@ -34,7 +34,6 @@
                                int* startIndex,
                                int vertexCount,
                                int indexCount);
-    virtual void postDraw();
 
 private: