diff options
author | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-04-16 16:24:35 +0000 |
---|---|---|
committer | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-04-16 16:24:35 +0000 |
commit | 0dd84a399ae8903784eac1c361c08449f822307f (patch) | |
tree | 18ce74bcc7e823ffacbc23c6601d18d2f745920a /src/gpu/gl/debug/GrShaderObj.h | |
parent | 6853e808a464ca75ff1328338d1eb55ff27c4337 (diff) |
Minor code cleanup of Debug GL Interface
http://codereview.appspot.com/6032043/
git-svn-id: http://skia.googlecode.com/svn/trunk@3690 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/gpu/gl/debug/GrShaderObj.h')
-rw-r--r-- | src/gpu/gl/debug/GrShaderObj.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/gpu/gl/debug/GrShaderObj.h b/src/gpu/gl/debug/GrShaderObj.h index ca6ccdc048..200c8b650c 100644 --- a/src/gpu/gl/debug/GrShaderObj.h +++ b/src/gpu/gl/debug/GrShaderObj.h @@ -18,15 +18,12 @@ class GrShaderObj : public GrFakeRefObj { public: GrShaderObj() : GrFakeRefObj() - , fType(GR_GL_VERTEX_SHADER) {} + , fType(GR_GL_VERTEX_SHADER) {} - void setType(GrGLenum type) { fType = type; } - GrGLenum getType() { return fType; } + void setType(GrGLenum type) { fType = type; } + GrGLenum getType() { return fType; } - virtual void deleteAction() SK_OVERRIDE { - - this->INHERITED::deleteAction(); - } + virtual void deleteAction() SK_OVERRIDE; protected: private: |