Searched defs:shadowOffset (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebKit/win/
H A DWebKitGraphics.h61 SIZE shadowOffset; member in struct:WebTextRenderInfo
/external/webkit/Source/WebCore/platform/graphics/win/
H A DFontCGWin.cpp358 FloatSize shadowOffset; local
362 graphicsContext->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
371 float shadowTextX = point.x() + translation.width() + shadowOffset.width();
373 float shadowTextY = point.y() + translation.height() + shadowOffset.height() * (graphicsContext->shadowsIgnoreTransforms() ? -1 : 1);
377 CGContextSetTextPosition(cgContext, point.x() + translation.width() + shadowOffset.width() + font->syntheticBoldOffset(), point.y() + translation.height() + shadowOffset.height());
391 graphicsContext->setShadow(shadowOffset, shadowBlur, shadowColor, ColorSpaceDeviceRGB);
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext.h195 FloatSize shadowOffset; member in struct:WebCore::GraphicsContextState
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DFontChromiumWin.cpp278 FloatSize shadowOffset; local
282 if (m_graphicsContext->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace)) {
291 ExtTextOut(m_hdc, x + shadowOffset.width(), y + shadowOffset.height(), ETO_GLYPH_INDEX, 0, reinterpret_cast<const wchar_t*>(&glyphs[0]), numGlyphs, &advances[0]);
511 FloatSize shadowOffset; local
515 if (graphicsContext->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace) && windowsCanHandleDrawTextShadow(graphicsContext)) {
519 state.draw(graphicsContext, hdc, static_cast<int>(point.x()) + shadowOffset.width(),
520 static_cast<int>(point.y() - fontMetrics().ascent()) + shadowOffset.height(), from, to);
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DSkiaFontWin.cpp227 FloatSize shadowOffset; local
232 bool hasShadow = context->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DGraphicsContextWinCE.cpp1217 FloatSize shadowOffset;
1222 getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
1226 dstRect.move(stableRound(shadowOffset.width()), stableRound(shadowOffset.height()));
1635 FloatSize shadowOffset; local
1640 && getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace)
1646 trShadowPoint = m_data->mapPoint(startPoint + shadowOffset);
/external/webkit/Source/WebCore/rendering/
H A DRenderBoxModelObject.cpp2049 static inline IntRect areaCastingShadowInHole(const IntRect& holeRect, int shadowBlur, int shadowSpread, const IntSize& shadowOffset) argument
2059 offsetBounds.move(-shadowOffset);
2082 IntSize shadowOffset(shadow->x(), shadow->y());
2095 shadowRect.move(shadowOffset);
2102 IntSize extraOffset(w + max(0, shadowOffset.width()) + shadowBlur + 2 * shadowSpread + 1, 0);
2103 shadowOffset -= extraOffset;
2107 context->setLegacyShadow(shadowOffset, shadowBlur, shadowColor, s->colorSpace());
2109 context->setShadow(shadowOffset, shadowBlur, shadowColor, s->colorSpace());
2161 holeRect.move(-max(shadowOffset.width(), 0) - shadowBlur, 0);
2162 holeRect.setWidth(holeRect.width() + max(shadowOffset
[all...]

Completed in 169 milliseconds