~ubuntu-branches/ubuntu/saucy/merkaartor/saucy

« back to all changes in this revision

Viewing changes to QtStyles/skulpture22/sk_effects.h

  • Committer: Bazaar Package Importer
  • Author(s): Bernd Zeimetz
  • Date: 2009-09-13 00:52:12 UTC
  • mto: (1.2.7 upstream) (0.1.3 upstream) (3.1.7 sid)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20090913005212-pjecal8zxm07x0fj
ImportĀ upstreamĀ versionĀ 0.14+svnfixes~20090912

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * sk_effects.h - Classical Three-Dimensional Artwork for Qt 4
3
 
 *
4
 
 * Copyright (c) 2008 Christoph Feck <christoph@maxiom.de>
5
 
 *
6
 
 * This program is free software; you can redistribute it and/or modify
7
 
 * it under the terms of the GNU General Public License as published by
8
 
 * the Free Software Foundation; either version 3 of the License, or
9
 
 * (at your option) any later version.
10
 
 *
11
 
 * This program is distributed in the hope that it will be useful,
12
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 * GNU General Public License for more details.
15
 
 *
16
 
 * You should have received a copy of the GNU General Public License
17
 
 * along with this program; if not, write to the Free Software
18
 
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 
 *
20
 
 */
21
 
 
22
 
#ifndef SKULPTURE_EFFECTS_H
23
 
#define SKULPTURE_EFFECTS_H 1
24
 
 
25
 
 
26
 
/*-----------------------------------------------------------------------*/
27
 
 
28
 
#include <QtGui/QRgb>
29
 
 
30
 
#define F_SHIFT 11
31
 
 
32
 
void filterRgbPixels(QRgb *rgb, int w, int h, int stride, int f);
33
 
 
34
 
 
35
 
/*-----------------------------------------------------------------------*/
36
 
 
37
 
#include <QtGui/QImage>
38
 
#include <cmath>
39
 
 
40
 
static inline void filterImage(QImage &im, double f)
41
 
{
42
 
        filterRgbPixels((QRgb *) im.bits(), im.width(), im.height(), im.bytesPerLine() / sizeof(QRgb), int((1 << F_SHIFT) * f));
43
 
}
44
 
 
45
 
 
46
 
static inline void blurImage(QImage &im, int radius)
47
 
{
48
 
        if (radius >= 1) {
49
 
                double f = 1.0 - exp(-2.3 / (radius + 1.0));
50
 
                filterImage(im, f);
51
 
        }
52
 
}
53
 
 
54
 
 
55
 
/*-----------------------------------------------------------------------*/
56
 
 
57
 
#endif
58
 
 
59