File indexing completed on 2025-02-02 04:17:47
0001 /* 0002 * SPDX-License-Identifier: GPL-3.0-or-later 0003 */ 0004 0005 #ifndef TESTKOCOLORSPACEABSTRACT_H 0006 #define TESTKOCOLORSPACEABSTRACT_H 0007 0008 #include <QObject> 0009 0010 class TestKoColorSpaceAbstract : public QObject 0011 { 0012 Q_OBJECT 0013 private Q_SLOTS: 0014 void testMixColorsOpU8(); 0015 void testMixColorsOpF32(); 0016 void testMixColorsOpU8NoAlpha(); 0017 void testMixColorsOpU8NoAlphaLinear(); 0018 void testBitBltCrossColorSpaceWithChannelFlags_data(); 0019 void testBitBltCrossColorSpaceWithChannelFlags(); 0020 0021 }; 0022 0023 #endif