diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/BitmapArithmeticBlendFilter.hxx | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/include/vcl/BitmapArithmeticBlendFilter.hxx b/include/vcl/BitmapArithmeticBlendFilter.hxx new file mode 100644 index 000000000000..a2de3ae28c19 --- /dev/null +++ b/include/vcl/BitmapArithmeticBlendFilter.hxx @@ -0,0 +1,31 @@ +/* -*- 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_BITMAPARITHMETICBLENDFILTER_HXX +#define INCLUDED_VCL_BITMAPARITHMETICBLENDFILTER_HXX + +#include <vcl/bitmapex.hxx> + +class VCL_DLLPUBLIC BitmapArithmeticBlendFilter +{ +private: + BitmapEx maBitmapEx; + BitmapEx maBitmapEx2; + +public: + BitmapArithmeticBlendFilter(BitmapEx const& rBmpEx, BitmapEx const& rBmpEx2); + virtual ~BitmapArithmeticBlendFilter(); + + BitmapEx execute(double aK1, double aK2, double aK3, double aK4); +}; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |