summaryrefslogtreecommitdiff
path: root/sc/source/core/opencl/op_math.hxx
diff options
context:
space:
mode:
authorfengzeng <fengzeng@multicorewareinc.com>2013-12-12 14:33:52 +0800
committerI-Jui (Ray) Sung <ray@multicorewareinc.com>2013-12-19 17:53:51 -0600
commitd968167e4e37fc3a7074933bca9e7d1c9f4f8348 (patch)
tree07b89f78229d522570bf9b8a301bb48f646c29ad /sc/source/core/opencl/op_math.hxx
parent2eb504cca2b507cad77a99d37857d0f4312ef560 (diff)
GPU Calc: implemented DEGREES
AMLOEXT-356 FIX Change-Id: I62de174692e00a2a642a3f2c2dc12c62d8512b4b Signed-off-by: haochen <haochen@multicorewareinc.com> Signed-off-by: Wei Wei <weiwei@multicorewareinc.com> Signed-off-by: I-Jui (Ray) Sung <ray@multicorewareinc.com>
Diffstat (limited to 'sc/source/core/opencl/op_math.hxx')
-rw-r--r--sc/source/core/opencl/op_math.hxx8
1 files changed, 7 insertions, 1 deletions
diff --git a/sc/source/core/opencl/op_math.hxx b/sc/source/core/opencl/op_math.hxx
index 66a7fe531c3a..dd9c158ed32d 100644
--- a/sc/source/core/opencl/op_math.hxx
+++ b/sc/source/core/opencl/op_math.hxx
@@ -373,7 +373,13 @@ public:
virtual std::string BinFuncName(void) const { return "AverageIf"; }
};
-
+class OpDeg: public Normal
+{
+public:
+ virtual void GenSlidingWindowFunction(std::stringstream &ss,
+ const std::string sSymName, SubArguments &vSubArguments);
+ virtual std::string BinFuncName(void) const { return "Degrees"; }
+};
}}
#endif