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

  /external/webkit/WebCore/platform/graphics/
GraphicsContextPrivate.h 48 , shadowBlur(0)
76 unsigned shadowBlur;
  /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/qt/
FontQt.cpp 105 int shadowBlur;
107 bool hasShadow = ctx->textDrawingMode() == cTextFill && ctx->getShadow(shadowSize, shadowBlur, shadowColor);
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...]
  /external/webkit/WebKit/win/
WebKitGraphics.h 62 int shadowBlur;
  /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/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/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/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.cpp 293 float CanvasRenderingContext2D::shadowBlur() const
    [all...]
  /external/webkit/WebCore/rendering/
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...]
RenderBoxModelObject.cpp     [all...]
  /external/webkit/WebCore/platform/graphics/wince/
GraphicsContextWince.cpp     [all...]

Completed in 121 milliseconds