File indexing completed on 2025-02-02 04:15:03

0001 /*
0002  *  SPDX-FileCopyrightText: 2023 Wolthera van Hövell tot Westerflier <griffinvalley@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 #ifndef TESTXSIMDPAINTING_H
0007 #define TESTXSIMDPAINTING_H
0008 
0009 #include <simpletest.h>
0010 
0011 /**
0012  * @brief The TestXsimdPainting class
0013  *
0014  * This tests whether the algorithms for XSimd and its fallback algorithm are the same.
0015  */
0016 
0017 class TestXsimdPainting : public QObject
0018 {
0019     Q_OBJECT
0020 private Q_SLOTS:
0021     void testKoClipMaskPainting_data();
0022     void testKoClipMaskPainting();
0023 };
0024 
0025 #endif // TESTXSIMDPAINTING_H