File indexing completed on 2025-02-16 04:05:07
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_PROJECTION_BENCHMARK_H 0008 #define KIS_PROJECTION_BENCHMARK_H 0009 0010 #include <simpletest.h> 0011 0012 /// loads the image, computes the projection and saves it to another file 0013 class KisProjectionBenchmark : public QObject 0014 { 0015 Q_OBJECT 0016 0017 private Q_SLOTS: 0018 void initTestCase(); 0019 void cleanupTestCase(); 0020 0021 void benchmarkProjection(); 0022 void benchmarkLoading(); 0023 }; 0024 0025 #endif