File indexing completed on 2024-04-28 04:21:30

0001 /*
0002  *  SPDX-FileCopyrightText: 2010 Lukáš Tvrdý lukast.dev @gmail.com
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef KIS_BLUR_BENCHMARK_H
0008 #define KIS_BLUR_BENCHMARK_H
0009 
0010 #include <simpletest.h>
0011 #include <kis_types.h>
0012 #include <KoColor.h>
0013 #include <kis_paint_device.h>
0014 
0015 class KoColor;
0016 
0017 class KisBlurBenchmark : public QObject
0018 {
0019     Q_OBJECT
0020 private:
0021     const KoColorSpace * m_colorSpace;
0022     KisPaintDeviceSP m_device;
0023     KoColor m_color;
0024     
0025 private Q_SLOTS:
0026     void initTestCase();
0027     void cleanupTestCase();
0028     
0029     void benchmarkFilter();
0030     
0031 };
0032 
0033 #endif