Changeset 202348 in webkit
- Timestamp:
- Jun 22, 2016, 1:44:26 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r202344 r202348 1 2016-06-22 Simon Fraser <simon.fraser@apple.com> 2 3 REGRESSION (r201629): Weird button glitching on github.com 4 https://bugs.webkit.org/show_bug.cgi?id=159031 5 rdar://problem/26880332 6 7 Reviewed by Tim Horton. 8 9 * fast/backgrounds/scaled-gradient-background-expected.html: Added. 10 * fast/backgrounds/scaled-gradient-background.html: Added. 11 1 12 2016-06-22 Alexey Proskuryakov <ap@apple.com> 2 13 -
trunk/Source/WebCore/ChangeLog
r202345 r202348 1 2016-06-22 Simon Fraser <simon.fraser@apple.com> 2 3 REGRESSION (r201629): Weird button glitching on github.com 4 https://bugs.webkit.org/show_bug.cgi?id=159031 5 rdar://problem/26880332 6 7 Reviewed by Tim Horton. 8 9 r201629 changed the logic slightly when creating an image buffer for a scaled context; 10 it set the buffer context's scale to the scale in the source context, but this failed 11 to take into account the rounding up of the buffer size, which the old code did. 12 13 Fix by reverting to the old behavior. 14 15 Since buffer sizes can only be integral, changed compatibleBufferSize() to return 16 an IntSize. 17 18 Test: fast/backgrounds/scaled-gradient-background.html 19 20 * platform/graphics/ImageBuffer.cpp: 21 (WebCore::ImageBuffer::createCompatibleBuffer): 22 (WebCore::ImageBuffer::compatibleBufferSize): 23 * platform/graphics/ImageBuffer.h: 24 * platform/graphics/IntRect.h: 25 (WebCore::IntRect::area): 26 * platform/graphics/IntSize.h: 27 (WebCore::IntSize::area): Make this return an unsigned. 28 1 29 2016-06-22 Anders Carlsson <andersca@apple.com> 2 30 -
trunk/Source/WebCore/platform/graphics/ImageBuffer.cpp
r201629 r202348 170 170 return nullptr; 171 171 172 FloatSize scaledSize = ImageBuffer::compatibleBufferSize(size, context);173 174 auto buffer = ImageBuffer::createCompatibleBuffer( expandedIntSize(scaledSize), 1, ColorSpaceSRGB, context, hasAlpha);172 IntSize scaledSize = ImageBuffer::compatibleBufferSize(size, context); 173 174 auto buffer = ImageBuffer::createCompatibleBuffer(scaledSize, 1, ColorSpaceSRGB, context, hasAlpha); 175 175 if (!buffer) 176 176 return nullptr; 177 177 178 178 // Set up a corresponding scale factor on the graphics context. 179 buffer->context().scale( context.scaleFactor());179 buffer->context().scale(FloatSize(scaledSize.width() / size.width(), scaledSize.height() / size.height())); 180 180 return buffer; 181 181 } … … 186 186 } 187 187 188 FloatSize ImageBuffer::compatibleBufferSize(const FloatSize& size, const GraphicsContext& context)188 IntSize ImageBuffer::compatibleBufferSize(const FloatSize& size, const GraphicsContext& context) 189 189 { 190 190 // Enlarge the buffer size if the context's transform is scaling it so we need a higher 191 191 // resolution than one pixel per unit. 192 return size * context.scaleFactor();192 return expandedIntSize(size * context.scaleFactor()); 193 193 } 194 194 -
trunk/Source/WebCore/platform/graphics/ImageBuffer.h
r201629 r202348 84 84 static std::unique_ptr<ImageBuffer> createCompatibleBuffer(const FloatSize&, float resolutionScale, ColorSpace, const GraphicsContext&, bool hasAlpha); 85 85 86 static FloatSize compatibleBufferSize(const FloatSize&, const GraphicsContext&);86 static IntSize compatibleBufferSize(const FloatSize&, const GraphicsContext&); 87 87 bool isCompatibleWithContext(const GraphicsContext&) const; 88 88 -
trunk/Source/WebCore/platform/graphics/IntRect.h
r191216 r202348 86 86 int width() const { return m_size.width(); } 87 87 int height() const { return m_size.height(); } 88 89 unsigned area() const { return m_size.area(); } 88 90 89 91 void setX(int x) { m_location.setX(x); } -
trunk/Source/WebCore/platform/graphics/IntSize.h
r199956 r202348 126 126 IntSize constrainedBetween(const IntSize& min, const IntSize& max) const; 127 127 128 intarea() const129 { 130 return m_width * m_height;128 unsigned area() const 129 { 130 return abs(m_width) * abs(m_height); 131 131 } 132 132
Note:
See TracChangeset
for help on using the changeset viewer.