File indexing completed on 2025-01-05 03:59:37
0001 /* 0002 SPDX-FileCopyrightText: 2010 Jens-Michael Hoffmann <jmho@c-xx.com> 0003 SPDX-FileCopyrightText: 2012 Ander Pijoan <ander.pijoan@deusto.es> 0004 0005 SPDX-License-Identifier: LGPL-2.1-or-later 0006 */ 0007 0008 #include "TextureTile.h" 0009 0010 #include <limits> 0011 0012 #include "digikam_debug.h" 0013 0014 namespace Marble 0015 { 0016 0017 TextureTile::TextureTile( TileId const & tileId, QImage const & image, const Blending * blending ) 0018 : Tile( tileId ), 0019 m_image( image ), 0020 m_blending( blending ) 0021 { 0022 Q_ASSERT( !image.isNull() ); 0023 } 0024 0025 TextureTile::~TextureTile() 0026 { 0027 } 0028 0029 } 0030