File indexing completed on 2024-11-10 09:38:43
0001 /* 0002 Large image displaying library. 0003 0004 Copyright (C) 2004,2005 Maks Orlovich (maksim@kde.org) 0005 0006 Permission is hereby granted, free of charge, to any person obtaining a copy 0007 of this software and associated documentation files (the "Software"), to deal 0008 in the Software without restriction, including without limitation the rights 0009 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 0010 copies of the Software, and to permit persons to whom the Software is 0011 furnished to do so, subject to the following conditions: 0012 0013 The above copyright notice and this permission notice shall be included in 0014 all copies or substantial portions of the Software. 0015 0016 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 0017 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 0018 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 0019 AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 0020 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 0021 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 0022 0023 */ 0024 #include "rawimageplane.h" 0025 0026 namespace khtmlImLoad 0027 { 0028 0029 bool RawImagePlane::isUpToDate(unsigned int tileX, unsigned int tileY, 0030 PixmapTile *tile) 0031 { 0032 Q_UNUSED(tileX); 0033 return checkUpToDate(versions + tileY * Tile::TileSize, tile); 0034 } 0035 0036 void RawImagePlane::ensureUpToDate(unsigned int tileX, unsigned int tileY, 0037 PixmapTile *tile) 0038 { 0039 //Just image -> pixmap update 0040 updatePixmap(tile, image, 0041 tileX, tileY, 0042 tileX * Tile::TileSize, tileY * Tile::TileSize, 0043 versions + tileY * Tile::TileSize); 0044 } 0045 0046 } 0047