commit | 8f1e60c42e0a819f389594f5d2f38fb2e024c9c9 | [log] [tgz] |
---|---|---|
author | Tim Murray <timmurray@google.com> | Tue Nov 13 12:25:11 2012 -0800 |
committer | Tim Murray <timmurray@google.com> | Tue Nov 13 12:25:11 2012 -0800 |
tree | d188bb7a61b486a65c0277b311da5e2f56f82f37 | |
parent | 509ea5c832a865bc9083d53f1f058377a689bab3 [diff] [blame] |
Add blur intrinsic to C++. Change-Id: I5cfc5873a1bda949619f96787cd68bb92cc48f8f
diff --git a/cpp/rsCppStructs.h b/cpp/rsCppStructs.h index a936d47..a5df611 100644 --- a/cpp/rsCppStructs.h +++ b/cpp/rsCppStructs.h
@@ -551,6 +551,13 @@ void blendSubtract(sp<Allocation> in, sp<Allocation> out); }; +class ScriptIntrinsicBlur : public ScriptIntrinsic { + public: + ScriptIntrinsicBlur(sp<RS> rs, Element *e); + void blur(sp<Allocation> in, sp<Allocation> out); + void setRadius(float radius); +}; + } }