File indexing completed on 2024-11-17 04:17:25
0001 /* 0002 SPDX-FileCopyrightText: 2006 Zack Rusin <zack@kde.org> 0003 SPDX-FileCopyrightText: 2006-2007, 2008 Fredrik Höglund <fredrik@kde.org> 0004 0005 The stack blur algorithm was invented by Mario Klingemann <mario@quasimondo.com> 0006 0007 This implementation is based on the version in Anti-Grain Geometry Version 2.4, 0008 SPDX-FileCopyrightText: 2002-2005 Maxim Shemanarev (http://www.antigrain.com) 0009 0010 SPDX-License-Identifier: BSD-2-Clause 0011 */ 0012 0013 #ifndef KOSMINDOORMAP_STACKBLUR_P_H 0014 #define KOSMINDOORMAP_STACKBLUR_P_H 0015 0016 class QImage; 0017 0018 namespace KOSMIndoorMap { 0019 0020 /** Stack blur algorithm, taken from KIO. */ 0021 namespace StackBlur 0022 { 0023 void blur(QImage &image, float radius); 0024 } 0025 0026 } 0027 0028 #endif // KOSMINDOORMAP_STACKBLUR_P_H