Searched defs:shadowBlur (Results 1 - 15 of 15) sorted by relevance

/external/webkit/WebCore/platform/graphics/
H A DGraphicsContextPrivate.h48 , shadowBlur(0)
76 unsigned shadowBlur; member in struct:WebCore::GraphicsContextState
/external/webkit/WebKit/win/
H A DWebKitGraphics.h62 int shadowBlur; member in struct:WebTextRenderInfo
/external/webkit/WebCore/platform/graphics/cairo/
H A DFontCairo.cpp73 int shadowBlur = 0; local
76 context->getShadow(shadowSize, shadowBlur, shadowColor);
97 GraphicsContext::calculateShadowBufferDimensions(shadowBufferSize, shadowRect, kernelSize, rect, shadowSize, shadowBlur);
189 context->setShadow(shadowSize, shadowBlur, shadowColor, DeviceColorSpace);
H A DImageCairo.cpp138 int shadowBlur; local
140 if (context->getShadow(shadowSize, shadowBlur, shadowColor)) {
144 GraphicsContext::calculateShadowBufferDimensions(shadowBufferSize, shadowRect, kernelSize, dstRect, shadowSize, shadowBlur);
H A DGraphicsContextCairo.cpp138 void GraphicsContext::calculateShadowBufferDimensions(IntSize& shadowBufferSize, FloatRect& shadowRect, float& kernelSize, const FloatRect& sourceRect, const IntSize& shadowSize, int shadowBlur) argument
142 kernelSize = (shadowBlur < 8 ? shadowBlur / 2.f : sqrt(shadowBlur * 2.f));
157 int shadowBlur; local
159 if (!context->getShadow(shadowSize, shadowBlur, shadowColor))
175 GraphicsContext::calculateShadowBufferDimensions(shadowBufferSize, shadowRect, kernelSize, rect, shadowSize, shadowBlur);
555 int shadowBlur; local
558 if (!context->getShadow(shadowSize, shadowBlur, shadowColor))
564 GraphicsContext::calculateShadowBufferDimensions(shadowBufferSize, shadowRect, kernelSize, rect, shadowSize, shadowBlur);
[all...]
/external/webkit/WebCore/platform/graphics/qt/
H A DFontQt.cpp105 int shadowBlur; local
107 bool hasShadow = ctx->textDrawingMode() == cTextFill && ctx->getShadow(shadowSize, shadowBlur, shadowColor);
H A DGraphicsContextQt.cpp315 int shadowBlur; local
317 if (getShadow(shadowSize, shadowBlur, shadowColor)) {
352 int shadowBlur; local
354 if (textDrawingMode() == cTextFill && getShadow(shadowSize, shadowBlur, shadowColor)) {
454 int shadowBlur; local
458 if (getShadow(shadowSize, shadowBlur, shadowColor)) {
489 int shadowBlur; local
491 if (getShadow(shadowSize, shadowBlur, shadowColor)) {
520 int shadowBlur; local
522 if (context->getShadow(shadowSize, shadowBlur, shadowColo
567 int shadowBlur; local
599 int shadowBlur; local
[all...]
/external/webkit/WebCore/platform/graphics/win/
H A DFontCGWin.cpp356 int shadowBlur; local
358 graphicsContext->getShadow(shadowSize, shadowBlur, shadowColor);
360 bool hasSimpleShadow = graphicsContext->textDrawingMode() == cTextFill && shadowColor.isValid() && !shadowBlur;
384 graphicsContext->setShadow(shadowSize, shadowBlur, shadowColor, DeviceColorSpace);
/external/webkit/WebCore/platform/graphics/chromium/
H A DFontChromiumWin.cpp277 int shadowBlur; local
279 if (m_graphicsContext->getShadow(shadowSize, shadowBlur, shadowColor)) {
284 ASSERT(shadowBlur == 0);
487 int shadowBlur; local
489 if (graphicsContext->getShadow(shadowSize, shadowBlur, shadowColor) && windowsCanHandleDrawTextShadow(graphicsContext)) {
/external/webkit/WebCore/platform/graphics/gtk/
H A DFontGtk.cpp214 int shadowBlur = 0; local
217 context->getShadow(shadowSize, shadowBlur, shadowColor);
262 context->setShadow(shadowSize, shadowBlur, shadowColor, DeviceColorSpace);
/external/webkit/WebCore/platform/graphics/skia/
H A DSkiaFontWin.cpp226 int shadowBlur; local
229 bool hasShadow = context->getShadow(shadowSize, shadowBlur, shadowColor);
230 return (hasShadow && (shadowBlur == 0) && (shadowColor.alpha() == 255) && (context->fillColor().alpha() == 255));
/external/webkit/WebCore/rendering/
H A DInlineTextBox.cpp289 int shadowBlur = shadow->blur; local
294 shadowRect.inflate(shadowBlur);
299 extraOffset = IntSize(0, 2 * h + max(0, shadowOffset.height()) + shadowBlur);
302 context->setShadow(shadowOffset, shadowBlur, shadowColor, fillColorSpace);
H A DRenderBoxModelObject.cpp1318 int shadowBlur = shadow->blur; local
1329 shadowRect.inflate(shadowBlur + shadowSpread);
1337 IntSize extraOffset(w + max(0, shadowOffset.width()) + shadowBlur + 2 * shadowSpread + 1, 0);
1341 context->setShadow(shadowOffset, shadowBlur, shadowColor, s->colorSpace());
1418 holeRect.move(-max(shadowOffset.width(), 0) - shadowBlur, 0);
1419 holeRect.setWidth(holeRect.width() + max(shadowOffset.width(), 0) + shadowBlur);
1422 holeRect.setWidth(holeRect.width() - min(shadowOffset.width(), 0) + shadowBlur);
1437 IntSize extraOffset(2 * w + max(0, shadowOffset.width()) + shadowBlur - 2 * shadowSpread + 1, 0);
1464 context->setShadow(shadowOffset, shadowBlur, shadowColor, s->colorSpace());
/external/webkit/WebCore/html/canvas/
H A DCanvasRenderingContext2D.cpp293 float CanvasRenderingContext2D::shadowBlur() const function in class:WebCore::CanvasRenderingContext2D
/external/webkit/WebCore/platform/graphics/wince/
H A DGraphicsContextWince.cpp1252 int shadowBlur = 0; local
1255 getShadow(shadowSize, shadowBlur, shadowColor);
1260 dstRect.inflate(shadowBlur);
1675 int shadowBlur = 0; local
1678 && getShadow(shadowSize, shadowBlur, shadowColor)

Completed in 109 milliseconds