Warning, file /graphics/krita/libs/image/tiles3/tests/kis_tile_compressors_test.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 Dmitry Kazakov <dimula73@gmail.com> 0003 * 0004 * SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 #ifndef KIS_TILE_COMPRESSORS_TEST_H 0007 #define KIS_TILE_COMPRESSORS_TEST_H 0008 0009 #include <simpletest.h> 0010 0011 class KisAbstractTileCompressor; 0012 0013 class KisTileCompressorsTest : public QObject 0014 { 0015 Q_OBJECT 0016 private: 0017 void doRoundTrip(KisAbstractTileCompressor *compressor); 0018 void doLowLevelRoundTrip(KisAbstractTileCompressor *compressor); 0019 void doLowLevelRoundTripIncompressible(KisAbstractTileCompressor *compressor); 0020 0021 0022 private Q_SLOTS: 0023 void testRoundTripLegacy(); 0024 void testLowLevelRoundTripLegacy(); 0025 0026 void testRoundTrip2(); 0027 void testLowLevelRoundTrip2(); 0028 void testLowLevelRoundTripIncompressible2(); 0029 }; 0030 0031 #endif /* KIS_TILE_COMPRESSORS_TEST_H */ 0032