diff options
author | Mike Klein <mtklein@chromium.org> | 2016-09-27 09:34:10 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2016-09-27 14:04:26 +0000 |
commit | fc6c37b981daeece7474ce61070c707c37eefa62 (patch) | |
tree | f805d76deeddc4a70a07126e0e78354ff4929258 /tools/gpu/gl/debug | |
parent | 9766f0016669029fcdc49f00ceaaf66b01b03f4a (diff) |
Remove stray semicolons.
Turns out function declarations don't end in semicolons...
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2720
No public API changes.
TBR=reed@google.com
Change-Id: I72b56d52e1ff7fa6e89c295b0de8c46599791ebb
Reviewed-on: https://skia-review.googlesource.com/2720
Reviewed-by: Mike Klein <mtklein@chromium.org>
Commit-Queue: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'tools/gpu/gl/debug')
-rw-r--r-- | tools/gpu/gl/debug/GrBufferObj.h | 2 | ||||
-rw-r--r-- | tools/gpu/gl/debug/GrFakeRefObj.h | 2 | ||||
-rw-r--r-- | tools/gpu/gl/debug/GrFrameBufferObj.h | 2 | ||||
-rw-r--r-- | tools/gpu/gl/debug/GrProgramObj.h | 2 | ||||
-rw-r--r-- | tools/gpu/gl/debug/GrRenderBufferObj.h | 2 | ||||
-rw-r--r-- | tools/gpu/gl/debug/GrShaderObj.h | 2 | ||||
-rw-r--r-- | tools/gpu/gl/debug/GrTextureObj.h | 2 | ||||
-rw-r--r-- | tools/gpu/gl/debug/GrTextureUnitObj.h | 2 | ||||
-rw-r--r-- | tools/gpu/gl/debug/GrVertexArrayObj.h | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/tools/gpu/gl/debug/GrBufferObj.h b/tools/gpu/gl/debug/GrBufferObj.h index 96aef6ed0a..c91606da92 100644 --- a/tools/gpu/gl/debug/GrBufferObj.h +++ b/tools/gpu/gl/debug/GrBufferObj.h @@ -14,7 +14,7 @@ //////////////////////////////////////////////////////////////////////////////// class GrBufferObj : public GrFakeRefObj { - GR_DEFINE_CREATOR(GrBufferObj); + GR_DEFINE_CREATOR(GrBufferObj) public: GrBufferObj() diff --git a/tools/gpu/gl/debug/GrFakeRefObj.h b/tools/gpu/gl/debug/GrFakeRefObj.h index 30580516fa..e59aeb3594 100644 --- a/tools/gpu/gl/debug/GrFakeRefObj.h +++ b/tools/gpu/gl/debug/GrFakeRefObj.h @@ -30,7 +30,7 @@ public: fID = ++fNextID; } - virtual ~GrFakeRefObj() {}; + virtual ~GrFakeRefObj() {} void ref() { fRef++; diff --git a/tools/gpu/gl/debug/GrFrameBufferObj.h b/tools/gpu/gl/debug/GrFrameBufferObj.h index 42a0effe07..3bd642f460 100644 --- a/tools/gpu/gl/debug/GrFrameBufferObj.h +++ b/tools/gpu/gl/debug/GrFrameBufferObj.h @@ -16,7 +16,7 @@ class GrFBBindableObj; // TODO: when a framebuffer obj is bound the GL_SAMPLES query must return 0 // TODO: GL_STENCIL_BITS must also be redirected to the framebuffer class GrFrameBufferObj : public GrFakeRefObj { - GR_DEFINE_CREATOR(GrFrameBufferObj); + GR_DEFINE_CREATOR(GrFrameBufferObj) public: GrFrameBufferObj() diff --git a/tools/gpu/gl/debug/GrProgramObj.h b/tools/gpu/gl/debug/GrProgramObj.h index a25341a215..f4ff9d1967 100644 --- a/tools/gpu/gl/debug/GrProgramObj.h +++ b/tools/gpu/gl/debug/GrProgramObj.h @@ -15,7 +15,7 @@ class GrShaderObj; //////////////////////////////////////////////////////////////////////////////// class GrProgramObj : public GrFakeRefObj { - GR_DEFINE_CREATOR(GrProgramObj); + GR_DEFINE_CREATOR(GrProgramObj) public: GrProgramObj() diff --git a/tools/gpu/gl/debug/GrRenderBufferObj.h b/tools/gpu/gl/debug/GrRenderBufferObj.h index 134b9ec763..1802eb551e 100644 --- a/tools/gpu/gl/debug/GrRenderBufferObj.h +++ b/tools/gpu/gl/debug/GrRenderBufferObj.h @@ -13,7 +13,7 @@ //////////////////////////////////////////////////////////////////////////////// class GrRenderBufferObj : public GrFBBindableObj { - GR_DEFINE_CREATOR(GrRenderBufferObj); + GR_DEFINE_CREATOR(GrRenderBufferObj) public: GrRenderBufferObj() diff --git a/tools/gpu/gl/debug/GrShaderObj.h b/tools/gpu/gl/debug/GrShaderObj.h index 327bd7f084..8ecb9901f6 100644 --- a/tools/gpu/gl/debug/GrShaderObj.h +++ b/tools/gpu/gl/debug/GrShaderObj.h @@ -14,7 +14,7 @@ //////////////////////////////////////////////////////////////////////////////// class GrShaderObj : public GrFakeRefObj { - GR_DEFINE_CREATOR(GrShaderObj); + GR_DEFINE_CREATOR(GrShaderObj) public: GrShaderObj() diff --git a/tools/gpu/gl/debug/GrTextureObj.h b/tools/gpu/gl/debug/GrTextureObj.h index fcf851db86..e2908386cb 100644 --- a/tools/gpu/gl/debug/GrTextureObj.h +++ b/tools/gpu/gl/debug/GrTextureObj.h @@ -15,7 +15,7 @@ class GrTextureUnitObj; //////////////////////////////////////////////////////////////////////////////// class GrTextureObj : public GrFBBindableObj { - GR_DEFINE_CREATOR(GrTextureObj); + GR_DEFINE_CREATOR(GrTextureObj) public: GrTextureObj() diff --git a/tools/gpu/gl/debug/GrTextureUnitObj.h b/tools/gpu/gl/debug/GrTextureUnitObj.h index 5c7a03980b..b06d117255 100644 --- a/tools/gpu/gl/debug/GrTextureUnitObj.h +++ b/tools/gpu/gl/debug/GrTextureUnitObj.h @@ -16,7 +16,7 @@ class GrTextureObj; // GL emulation objects they are derived from GrFakeRefObj to provide some // uniformity in how the debug interface class manages resources class GrTextureUnitObj : public GrFakeRefObj { - GR_DEFINE_CREATOR(GrTextureUnitObj); + GR_DEFINE_CREATOR(GrTextureUnitObj) public: GrTextureUnitObj() diff --git a/tools/gpu/gl/debug/GrVertexArrayObj.h b/tools/gpu/gl/debug/GrVertexArrayObj.h index 989c610924..3aeb0b2f4c 100644 --- a/tools/gpu/gl/debug/GrVertexArrayObj.h +++ b/tools/gpu/gl/debug/GrVertexArrayObj.h @@ -11,7 +11,7 @@ #include "GrFakeRefObj.h" class GrVertexArrayObj : public GrFakeRefObj { - GR_DEFINE_CREATOR(GrVertexArrayObj); + GR_DEFINE_CREATOR(GrVertexArrayObj) public: GrVertexArrayObj() : GrFakeRefObj() {} |