Krita Source Code Documentation
Loading...
Searching...
No Matches
KoCompositeOpsBenchmark.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2010 Lukáš Tvrdý <lukast.dev@gmail.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-or-later
5 */
6
7#ifndef KO_COMPOSITEOPS_BENCHMARK_H_
8#define KO_COMPOSITEOPS_BENCHMARK_H_
9
10#include <QObject>
11
12class KoCompositeOpsBenchmark : public QObject
13{
14 Q_OBJECT
15private Q_SLOTS:
16 void init();
17
18 void initTestCase();
19 void cleanupTestCase();
20
24
25private:
26 quint8 * m_dstBuffer;
27 quint8 * m_srcBuffer;
28 quint8 * m_mskBuffer;
29
30
31};
32
33#endif