~ubuntu-branches/ubuntu/raring/calligra/raring-proposed

« back to all changes in this revision

Viewing changes to krita/image/kis_brush_mask_applicator_factories.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-01-15 17:26:10 UTC
  • mfrom: (1.1.17)
  • Revision ID: package-import@ubuntu.com-20130115172610-b193s9546hyssmym
Tags: 1:2.5.94-0ubuntu1
New upstream RC release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright (c) 2012 Dmitry Kazakov <dimula73@gmail.com>
 
3
 *
 
4
 *  This program is free software; you can redistribute it and/or modify
 
5
 *  it under the terms of the GNU General Public License as published by
 
6
 *  the Free Software Foundation; either version 2 of the License, or
 
7
 *  (at your option) any later version.
 
8
 *
 
9
 *  This program is distributed in the hope that it will be useful,
 
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 *  GNU General Public License for more details.
 
13
 *
 
14
 *  You should have received a copy of the GNU General Public License
 
15
 *  along with this program; if not, write to the Free Software
 
16
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
17
 */
 
18
 
 
19
#ifndef __KIS_BRUSH_MASK_APPLICATOR_FACTORIES_H
 
20
#define __KIS_BRUSH_MASK_APPLICATOR_FACTORIES_H
 
21
 
 
22
#include "KoVcMultiArchBuildSupport.h"
 
23
 
 
24
#include "kis_brush_mask_applicator_base.h"
 
25
 
 
26
 
 
27
template<class MaskGenerator, Vc::Implementation _impl>
 
28
struct KisBrushMaskScalarApplicator;
 
29
 
 
30
#ifdef HAVE_VC
 
31
 
 
32
template<class MaskGenerator, Vc::Implementation _impl>
 
33
struct KisBrushMaskVectorApplicator;
 
34
 
 
35
#else /* HAVE_VC */
 
36
 
 
37
#define KisBrushMaskVectorApplicator KisBrushMaskScalarApplicator
 
38
 
 
39
#endif /* HAVE_VC */
 
40
 
 
41
template<class MaskGenerator,
 
42
         template<class U, Vc::Implementation V> class Applicator>
 
43
struct MaskApplicatorFactory
 
44
{
 
45
    typedef MaskGenerator* ParamType;
 
46
    typedef KisBrushMaskApplicatorBase* ReturnType;
 
47
 
 
48
    template<Vc::Implementation _impl>
 
49
    static ReturnType create(ParamType maskGenerator);
 
50
};
 
51
 
 
52
#endif /* __KIS_BRUSH_MASK_APPLICATOR_FACTORIES_H */