summaryrefslogtreecommitdiff
path: root/include/vcl/BitmapSharpenFilter.hxx
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2018-04-19 06:50:32 +1000
committerTomaž Vajngerl <quikee@gmail.com>2018-04-22 05:30:21 +0200
commit8559353af24123c7a736e64311d57d85bb3cb44c (patch)
tree6c917c0fee785b632e66cfbfd555ea86cedd7e6f /include/vcl/BitmapSharpenFilter.hxx
parent57faa86592ddfc60be206b70ee16671585b7ca60 (diff)
vcl: introduce BitmapSharpenFilter
Change-Id: Ib503efa3634b3a000261d2398d04f779079bfe3f Reviewed-on: https://gerrit.libreoffice.org/53129 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include/vcl/BitmapSharpenFilter.hxx')
-rw-r--r--include/vcl/BitmapSharpenFilter.hxx28
1 files changed, 28 insertions, 0 deletions
diff --git a/include/vcl/BitmapSharpenFilter.hxx b/include/vcl/BitmapSharpenFilter.hxx
new file mode 100644
index 000000000000..7e965976d5e8
--- /dev/null
+++ b/include/vcl/BitmapSharpenFilter.hxx
@@ -0,0 +1,28 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ */
+
+#ifndef INCLUDED_VCL_BITMAPSHARPENFILTER_HXX
+#define INCLUDED_VCL_BITMAPSHARPENFILTER_HXX
+
+#include <vcl/BitmapConvolutionMatrixFilter.hxx>
+
+class VCL_DLLPUBLIC BitmapSharpenFilter : public BitmapConvolutionMatrixFilter
+{
+public:
+ BitmapSharpenFilter()
+ {
+ const long pSharpenMatrix[] = { -1, -1, -1, -1, 16, -1, -1, -1, -1 };
+ mpMatrix = &pSharpenMatrix[0];
+ }
+};
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */