summaryrefslogtreecommitdiff
path: root/cpu_ref/rsCpuIntrinsicConvolve5x5.cpp
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2015-05-13 19:26:09 -0700
committerStephen Hines <srhines@google.com>2015-05-22 13:19:36 -0700
commitc060f1435e7b9405f3be8974417fa6f410f03753 (patch)
tree80f01b09d7afea88e3d0ea011a188339ba4b3f17 /cpu_ref/rsCpuIntrinsicConvolve5x5.cpp
parenta748af828c67ee0fe931de30f0c8ff620fe4119f (diff)
downloadrs-c060f1435e7b9405f3be8974417fa6f410f03753.tar.gz
Use "override" instead of "virtual" when replacing methods.
Bug: 20306487 Change-Id: Ic83cb04cac153a7556f5d516e8f5ec88b5527b6f
Diffstat (limited to 'cpu_ref/rsCpuIntrinsicConvolve5x5.cpp')
-rw-r--r--cpu_ref/rsCpuIntrinsicConvolve5x5.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpu_ref/rsCpuIntrinsicConvolve5x5.cpp b/cpu_ref/rsCpuIntrinsicConvolve5x5.cpp
index 29dd8869..92e739fe 100644
--- a/cpu_ref/rsCpuIntrinsicConvolve5x5.cpp
+++ b/cpu_ref/rsCpuIntrinsicConvolve5x5.cpp
@@ -27,13 +27,13 @@ namespace renderscript {
class RsdCpuScriptIntrinsicConvolve5x5 : public RsdCpuScriptIntrinsic {
public:
- virtual void populateScript(Script *);
- virtual void invokeFreeChildren();
+ void populateScript(Script *) override;
+ void invokeFreeChildren() override;
- virtual void setGlobalVar(uint32_t slot, const void *data, size_t dataLength);
- virtual void setGlobalObj(uint32_t slot, ObjectBase *data);
+ void setGlobalVar(uint32_t slot, const void *data, size_t dataLength) override;
+ void setGlobalObj(uint32_t slot, ObjectBase *data) override;
- virtual ~RsdCpuScriptIntrinsicConvolve5x5();
+ ~RsdCpuScriptIntrinsicConvolve5x5() override;
RsdCpuScriptIntrinsicConvolve5x5(RsdCpuReferenceImpl *ctx, const Script *s, const Element *e);
protected: