diff options
author | djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-11-20 13:16:47 +0000 |
---|---|---|
committer | djsollen@google.com <djsollen@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-11-20 13:16:47 +0000 |
commit | 692f88c7f04583dcb0aca58c1f885e022d72cefb (patch) | |
tree | fd15e8e5ebad0f813aec1d3a2e3392217a100bdc /src/gpu/gl | |
parent | db490e99715c000ed15fd8211698f3e50ee2dc30 (diff) |
Add extra warnings to match what Android uses.
R=mtklein@google.com
Review URL: https://codereview.chromium.org/74193005
git-svn-id: http://skia.googlecode.com/svn/trunk@12310 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/gpu/gl')
-rw-r--r-- | src/gpu/gl/GrGLProgramEffects.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gpu/gl/GrGLProgramEffects.h b/src/gpu/gl/GrGLProgramEffects.h index 4572a4250d..3320891b37 100644 --- a/src/gpu/gl/GrGLProgramEffects.h +++ b/src/gpu/gl/GrGLProgramEffects.h @@ -129,6 +129,8 @@ protected: */ class GrGLProgramEffectsBuilder { public: + virtual ~GrGLProgramEffectsBuilder() { } + /** * Emits the effect's shader code, and stores the necessary uniforms internally. */ @@ -211,6 +213,7 @@ private: class GrGLVertexProgramEffectsBuilder : public GrGLProgramEffectsBuilder { public: GrGLVertexProgramEffectsBuilder(GrGLFullShaderBuilder*, int reserveCount); + virtual ~GrGLVertexProgramEffectsBuilder() { } virtual void emitEffect(const GrEffectStage&, GrGLProgramEffects::EffectKey, @@ -298,6 +301,7 @@ private: class GrGLTexGenProgramEffectsBuilder : public GrGLProgramEffectsBuilder { public: GrGLTexGenProgramEffectsBuilder(GrGLFragmentOnlyShaderBuilder*, int reserveCount); + virtual ~GrGLTexGenProgramEffectsBuilder() { } virtual void emitEffect(const GrEffectStage&, GrGLProgramEffects::EffectKey, |