HomeSort by relevance Sort by last modified time
    Searched refs:shadowBlur (Results 1 - 23 of 23) sorted by null

  /external/webkit/WebCore/platform/graphics/
GraphicsContextPrivate.h 48 , shadowBlur(0)
76 unsigned shadowBlur;
GraphicsContext.cpp 135 m_common->state.shadowBlur = blur;
143 m_common->state.shadowBlur = 0;
151 blur = m_common->state.shadowBlur;
GraphicsContext.h 317 static void calculateShadowBufferDimensions(IntSize& shadowBufferSize, FloatRect& shadowRect, float& kernelSize, const FloatRect& sourceRect, const IntSize& shadowSize, int shadowBlur);
  /external/webkit/WebKit/win/
WebKitGraphics.h 62 int shadowBlur;
WebKitGraphics.cpp 116 (info->shadowOffset.cx || info->shadowOffset.cy || info->shadowBlur || info->shadowColor))
117 context.setShadow(info->shadowOffset, info->shadowBlur, info->shadowColor, DeviceColorSpace);
  /external/webkit/WebCore/platform/graphics/mac/
FontMac.mm 116 int shadowBlur;
119 context->getShadow(shadowSize, shadowBlur, shadowColor);
121 bool hasSimpleShadow = context->textDrawingMode() == cTextFill && shadowColor.isValid() && !shadowBlur;
145 context->setShadow(shadowSize, shadowBlur, shadowColor, fillColorSpace);
  /external/webkit/WebCore/platform/graphics/cairo/
FontCairo.cpp 73 int shadowBlur = 0;
76 context->getShadow(shadowSize, shadowBlur, shadowColor);
97 GraphicsContext::calculateShadowBufferDimensions(shadowBufferSize, shadowRect, kernelSize, rect, shadowSize, shadowBlur);
189 context->setShadow(shadowSize, shadowBlur, shadowColor, DeviceColorSpace);
ImageCairo.cpp 138 int shadowBlur;
140 if (context->getShadow(shadowSize, shadowBlur, shadowColor)) {
144 GraphicsContext::calculateShadowBufferDimensions(shadowBufferSize, shadowRect, kernelSize, dstRect, shadowSize, shadowBlur);
GraphicsContextCairo.cpp 138 void GraphicsContext::calculateShadowBufferDimensions(IntSize& shadowBufferSize, FloatRect& shadowRect, float& kernelSize, const FloatRect& sourceRect, const IntSize& shadowSize, int shadowBlur)
142 kernelSize = (shadowBlur < 8 ? shadowBlur / 2.f : sqrt(shadowBlur * 2.f));
157 int shadowBlur;
159 if (!context->getShadow(shadowSize, shadowBlur, shadowColor))
175 GraphicsContext::calculateShadowBufferDimensions(shadowBufferSize, shadowRect, kernelSize, rect, shadowSize, shadowBlur);
555 int shadowBlur;
558 if (!context->getShadow(shadowSize, shadowBlur, shadowColor))
564 GraphicsContext::calculateShadowBufferDimensions(shadowBufferSize, shadowRect, kernelSize, rect, shadowSize, shadowBlur);
    [all...]
  /external/webkit/WebCore/platform/graphics/chromium/
FontChromiumWin.cpp 277 int shadowBlur;
279 if (m_graphicsContext->getShadow(shadowSize, shadowBlur, shadowColor)) {
284 ASSERT(shadowBlur == 0);
487 int shadowBlur;
489 if (graphicsContext->getShadow(shadowSize, shadowBlur, shadowColor) && windowsCanHandleDrawTextShadow(graphicsContext)) {
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 315 int shadowBlur;
317 if (getShadow(shadowSize, shadowBlur, shadowColor)) {
352 int shadowBlur;
354 if (textDrawingMode() == cTextFill && getShadow(shadowSize, shadowBlur, shadowColor)) {
454 int shadowBlur;
458 if (getShadow(shadowSize, shadowBlur, shadowColor)) {
489 int shadowBlur;
491 if (getShadow(shadowSize, shadowBlur, shadowColor)) {
520 int shadowBlur;
522 if (context->getShadow(shadowSize, shadowBlur, shadowColor))
    [all...]
FontQt.cpp 105 int shadowBlur;
107 bool hasShadow = ctx->textDrawingMode() == cTextFill && ctx->getShadow(shadowSize, shadowBlur, shadowColor);
  /external/webkit/WebCore/platform/graphics/skia/
SkiaFontWin.cpp 226 int shadowBlur;
229 bool hasShadow = context->getShadow(shadowSize, shadowBlur, shadowColor);
230 return (hasShadow && (shadowBlur == 0) && (shadowColor.alpha() == 255) && (context->fillColor().alpha() == 255));
  /external/webkit/WebCore/platform/graphics/gtk/
FontGtk.cpp 214 int shadowBlur = 0;
217 context->getShadow(shadowSize, shadowBlur, shadowColor);
262 context->setShadow(shadowSize, shadowBlur, shadowColor, DeviceColorSpace);
  /external/webkit/WebCore/platform/graphics/win/
FontCGWin.cpp 356 int shadowBlur;
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/html/canvas/
CanvasRenderingContext2D.idl 59 attribute float shadowBlur;
CanvasRenderingContext2D.h 90 float shadowBlur() const;
CanvasRenderingContext2D.cpp 293 float CanvasRenderingContext2D::shadowBlur() const
    [all...]
  /external/webkit/WebCore/rendering/
RenderBoxModelObject.cpp     [all...]
InlineTextBox.cpp 289 int shadowBlur = shadow->blur;
294 shadowRect.inflate(shadowBlur);
299 extraOffset = IntSize(0, 2 * h + max(0, shadowOffset.height()) + shadowBlur);
302 context->setShadow(shadowOffset, shadowBlur, shadowColor, fillColorSpace);
    [all...]
  /external/webkit/WebCore/inspector/front-end/
SummaryBar.js 200 ctx.shadowBlur = 2;
SourceFrame.js 555 ctx.shadowBlur = 4;
  /external/webkit/WebCore/platform/graphics/wince/
GraphicsContextWince.cpp     [all...]

Completed in 313 milliseconds