summaryrefslogtreecommitdiff
path: root/vcl/source/bitmap/bitmapfilter.cxx
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.com>2014-05-31 21:03:34 +0200
committerTomaž Vajngerl <tomaz.vajngerl@collabora.com>2014-06-03 12:03:25 +0200
commit1b23e46051d8cc7c01fd8b4d0ea51bfec145db8e (patch)
tree5f441067b23404f6e98a8c70d7a538498192e04e /vcl/source/bitmap/bitmapfilter.cxx
parent9a605b971a08965e9925eeff8762e333b7a31d43 (diff)
vcl: Refactor scale "super" out of bitmap and make it independent
Introduce BitmapFilter as a general bitmap filtering class, and make scale "super" algorithem independent as BitmapScaleSuper which uses BitmapFilter as superclass. This is an ongoing work to make some bitmap algorithms structured and more independent from the big bitmap class This will make them easier to work with, test and optimize. Change-Id: I37d29709b2af95cab2f6da21129302f5be79318b
Diffstat (limited to 'vcl/source/bitmap/bitmapfilter.cxx')
-rw-r--r--vcl/source/bitmap/bitmapfilter.cxx19
1 files changed, 19 insertions, 0 deletions
diff --git a/vcl/source/bitmap/bitmapfilter.cxx b/vcl/source/bitmap/bitmapfilter.cxx
new file mode 100644
index 000000000000..c04f3418c8e6
--- /dev/null
+++ b/vcl/source/bitmap/bitmapfilter.cxx
@@ -0,0 +1,19 @@
+/* -*- 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/.
+ *
+ */
+
+#include <vcl/bitmapfilter.hxx>
+
+BitmapFilter::BitmapFilter()
+{}
+
+BitmapFilter::~BitmapFilter()
+{}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */