| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 3 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 IntSize imageSize(roundedIntSize(clampedAbsoluteTileBoundaries.size())); | 235 IntSize imageSize(roundedIntSize(clampedAbsoluteTileBoundaries.size())); |
| 236 if (imageSize.isEmpty()) | 236 if (imageSize.isEmpty()) |
| 237 return nullptr; | 237 return nullptr; |
| 238 OwnPtr<ImageBuffer> tileImage = ImageBuffer::create(imageSize); | 238 OwnPtr<ImageBuffer> tileImage = ImageBuffer::create(imageSize); |
| 239 if (!tileImage) | 239 if (!tileImage) |
| 240 return nullptr; | 240 return nullptr; |
| 241 | 241 |
| 242 GraphicsContext* tileImageContext = tileImage->context(); | 242 GraphicsContext* tileImageContext = tileImage->context(); |
| 243 ASSERT(tileImageContext); | 243 ASSERT(tileImageContext); |
| 244 IntSize unclampedImageSize(roundedIntSize(absoluteTileBoundaries.size())); | 244 IntSize unclampedImageSize(roundedIntSize(absoluteTileBoundaries.size())); |
| 245 tileImageContext->scale(FloatSize(unclampedImageSize.width() / absoluteTileB
oundaries.width(), unclampedImageSize.height() / absoluteTileBoundaries.height()
)); | 245 tileImageContext->scale(unclampedImageSize.width() / absoluteTileBoundaries.
width(), unclampedImageSize.height() / absoluteTileBoundaries.height()); |
| 246 | 246 |
| 247 // The image buffer represents the final rendered size, so the content has t
o be scaled (to avoid pixelation). | 247 // The image buffer represents the final rendered size, so the content has t
o be scaled (to avoid pixelation). |
| 248 tileImageContext->scale(FloatSize(clampedAbsoluteTileBoundaries.width() / ti
leBoundaries.width(), | 248 tileImageContext->scale( |
| 249 clampedAbsoluteTileBoundaries.height() / t
ileBoundaries.height())); | 249 clampedAbsoluteTileBoundaries.width() / tileBoundaries.width(), |
| 250 clampedAbsoluteTileBoundaries.height() / tileBoundaries.height()); |
| 250 | 251 |
| 251 // Apply tile image transformations. | 252 // Apply tile image transformations. |
| 252 if (!tileImageTransform.isIdentity()) | 253 if (!tileImageTransform.isIdentity()) |
| 253 tileImageContext->concatCTM(tileImageTransform); | 254 tileImageContext->concatCTM(tileImageTransform); |
| 254 | 255 |
| 255 AffineTransform contentTransformation; | 256 AffineTransform contentTransformation; |
| 256 if (attributes.patternContentUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBO
UNDINGBOX) | 257 if (attributes.patternContentUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBO
UNDINGBOX) |
| 257 contentTransformation = tileImageTransform; | 258 contentTransformation = tileImageTransform; |
| 258 | 259 |
| 259 // Draw the content into the ImageBuffer. | 260 // Draw the content into the ImageBuffer. |
| 260 for (Element* element = ElementTraversal::firstWithin(*attributes.patternCon
tentElement()); element; element = ElementTraversal::nextSibling(*element)) { | 261 for (Element* element = ElementTraversal::firstWithin(*attributes.patternCon
tentElement()); element; element = ElementTraversal::nextSibling(*element)) { |
| 261 if (!element->isSVGElement() || !element->renderer()) | 262 if (!element->isSVGElement() || !element->renderer()) |
| 262 continue; | 263 continue; |
| 263 if (element->renderer()->needsLayout()) | 264 if (element->renderer()->needsLayout()) |
| 264 return nullptr; | 265 return nullptr; |
| 265 SVGRenderingContext::renderSubtree(tileImage->context(), element->render
er(), contentTransformation); | 266 SVGRenderingContext::renderSubtree(tileImage->context(), element->render
er(), contentTransformation); |
| 266 } | 267 } |
| 267 | 268 |
| 268 return tileImage.release(); | 269 return tileImage.release(); |
| 269 } | 270 } |
| 270 | 271 |
| 271 } | 272 } |
| OLD | NEW |