File indexing completed on 2024-04-14 03:48:07

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 #include "MarbleDebug.h"
0010 
0011 #include <limits>
0012 
0013 namespace Marble
0014 {
0015 
0016 TextureTile::TextureTile( TileId const & tileId, QImage const & image, const Blending * blending )
0017     : Tile( tileId ),
0018       m_image( image ),
0019       m_blending( blending )
0020 {
0021     Q_ASSERT( !image.isNull() );
0022 }
0023 
0024 TextureTile::~TextureTile()
0025 {
0026 }
0027 
0028 }
0029