File indexing completed on 2024-04-28 15:16:11

0001 // SPDX-License-Identifier: LGPL-2.1-or-later
0002 //
0003 // SPDX-FileCopyrightText: 2007 Carlos Licea <carlos _licea@hotmail.com>
0004 // SPDX-FileCopyrightText: 2011 Bernhard Beschow <bbeschow@cs.tu-berlin.de>
0005 //
0006 
0007 #include "TextureMapperInterface.h"
0008 
0009 using namespace Marble;
0010 
0011 TextureMapperInterface::TextureMapperInterface() :
0012     m_repaintNeeded( true )
0013 {
0014 }
0015 
0016 
0017 TextureMapperInterface::~TextureMapperInterface()
0018 {
0019 }
0020 
0021 void TextureMapperInterface::setRepaintNeeded()
0022 {
0023     m_repaintNeeded = true;
0024 }