Warning, file /graphics/krita/benchmarks/kis_projection_benchmark.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
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