aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/gl/debug/GrShaderObj.h
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-04-16 16:24:35 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-04-16 16:24:35 +0000
commit0dd84a399ae8903784eac1c361c08449f822307f (patch)
tree18ce74bcc7e823ffacbc23c6601d18d2f745920a /src/gpu/gl/debug/GrShaderObj.h
parent6853e808a464ca75ff1328338d1eb55ff27c4337 (diff)
Minor code cleanup of Debug GL Interface
Diffstat (limited to 'src/gpu/gl/debug/GrShaderObj.h')
-rw-r--r--src/gpu/gl/debug/GrShaderObj.h11
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: