Searched refs:shadowColor (Results 1 - 25 of 32) sorted by relevance

12

/macosx-10.10/WebCore-7600.1.25/platform/graphics/filters/
H A DFEDropShadow.h46 Color shadowColor() const { return m_shadowColor; } function in class:WebCore::FEDropShadow
47 void setShadowColor(const Color& shadowColor) { m_shadowColor = shadowColor; } argument
H A DFEDropShadow.cpp36 FEDropShadow::FEDropShadow(Filter* filter, float stdX, float stdY, float dx, float dy, const Color& shadowColor, float shadowOpacity) argument
42 , m_shadowColor(shadowColor)
47 PassRefPtr<FEDropShadow> FEDropShadow::create(Filter* filter, float stdX, float stdY, float dx, float dy, const Color& shadowColor, float shadowOpacity) argument
49 return adoptRef(new FEDropShadow(filter, stdX, stdY, dx, dy, shadowColor, shadowOpacity));
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebKitGraphics.h63 CGColorRef shadowColor; member in struct:WebTextRenderInfo
/macosx-10.10/WebCore-7600.1.25/platform/graphics/win/
H A DFontCGWin.cpp185 Color shadowColor; local
187 graphicsContext->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
189 bool hasSimpleShadow = graphicsContext->textDrawingMode() == TextModeFill && shadowColor.isValid() && !shadowBlur && (!graphicsContext->shadowsIgnoreTransforms() || graphicsContext->getCTM().isIdentityOrTranslationOrFlipped());
195 Color shadowFillColor(shadowColor.red(), shadowColor.green(), shadowColor.blue(), shadowColor.alpha() * fillColor.alpha() / 255);
217 graphicsContext->setShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Base/
H A DImageUtilities.js371 if (specification.shadowColor) {
376 if (specification.shadowColor instanceof Array) {
377 if (specification.shadowColor.length === 3)
378 context.shadowColor = "rgb(" + specification.shadowColor.join(", ") + ")";
379 else if (specification.shadowColor.length === 4)
380 context.shadowColor = "rgba(" + specification.shadowColor.join(", ") + ")";
382 context.shadowColor = specification.shadowColor;
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DWebCoreFullScreenWarningView.mm99 RetainPtr<NSColor> shadowColor = [NSColor colorWithCalibratedWhite:WarningViewShadowWhite alpha:WarningViewShadowAlpha];
100 [shadow.get() setShadowColor:shadowColor.get()];
H A DScrollbarThemeMac.mm563 layer.shadowColor = CGColorGetConstantColor(kCGColorBlack);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DGraphicsContext.cpp152 void GraphicsContext::drawRaisedEllipse(const FloatRect& rect, const Color& ellipseColor, ColorSpace ellipseColorSpace, const Color& shadowColor, ColorSpace shadowColorSpace) argument
159 setStrokeColor(shadowColor, shadowColorSpace);
160 setFillColor(shadowColor, shadowColorSpace);
198 m_state.shadowColor = color;
207 m_state.shadowColor = color;
219 m_state.shadowColor = Color();
226 return m_state.shadowColor.isValid() && m_state.shadowColor.alpha()
234 color = m_state.shadowColor;
242 return m_state.shadowColor
[all...]
H A DGraphicsContext.h165 Color shadowColor; member in struct:WebCore::GraphicsContextState
315 void drawRaisedEllipse(const FloatRect&, const Color& ellipseColor, ColorSpace ellipseColorSpace, const Color& shadowColor, ColorSpace shadowColorSpace);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/mac/
H A DFontMac.mm318 Color shadowColor;
321 context->getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
332 bool hasSimpleShadow = context->textDrawingMode() == TextModeFill && shadowColor.isValid() && !shadowBlur && !platformData.isColorBitmapFont() && (!context->shadowsIgnoreTransforms() || contextCTM.isIdentityOrTranslationOrFlipped()) && !context->isInTransparencyLayer();
337 Color shadowFillColor(shadowColor.red(), shadowColor.green(), shadowColor.blue(), shadowColor.alpha() * fillColor.alpha() / 255);
364 context->setShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
/macosx-10.10/WebKit-7600.1.25/ios/WebView/
H A DWebPDFViewIOS.mm74 + (CGColorRef)shadowColor
76 static CGColorRef shadowColor = createCGColorWithDeviceWhite(0, 2.0 / 3);
77 return shadowColor;
115 CGContextSetShadowWithColor(context, CGSizeMake(0.0f, height), 3.0f, [[self class] shadowColor]);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/
H A DFindIndicator.cpp177 static inline Color shadowColor() function in namespace:WebKit
228 graphicsContext.setShadow(FloatSize(shadowOffsetX, shadowOffsetY), shadowBlurRadius, shadowColor(), ColorSpaceSRGB);
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DShadowsAndTransparencyLayers.py80 shadowColor = CGColorCreateCopyWithAlpha(Utilities.getRGBOpaqueRedColor(), 1.0/3.0)
82 CGContextSetShadowWithColor(context, offset, blur, shadowColor)
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DShadowsAndTransparencyLayers.py80 shadowColor = CGColorCreateCopyWithAlpha(Utilities.getRGBOpaqueRedColor(), 1.0/3.0)
82 CGContextSetShadowWithColor(context, offset, blur, shadowColor)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Programming with Quartz/BasicDrawing/
H A DShadowsAndTransparencyLayers.py80 shadowColor = CGColorCreateCopyWithAlpha(Utilities.getRGBOpaqueRedColor(), 1.0/3.0)
82 CGContextSetShadowWithColor(context, offset, blur, shadowColor)
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cairo/
H A DFontCairo.cpp79 setSourceRGBAFromColor(context, graphicsContext->state().shadowColor);
H A DGraphicsContextCairo.cpp227 m_state.shadowColor,
833 m_state.shadowColor,
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderThemeIOS.h117 const Color& shadowColor() const;
H A DRenderBoxModelObject.cpp2402 const Color& shadowColor = shadow->color(); local
2424 context->setLegacyShadow(shadowOffset, shadowRadius, shadowColor, style.colorSpace());
2426 context->setShadow(shadowOffset, shadowRadius, shadowColor, style.colorSpace());
2476 context->fillRoundedRect(pixelSnappedBorderRect, shadowColor, style.colorSpace());
2478 context->fillRect(pixelSnappedBorderRect.rect(), shadowColor, style.colorSpace());
2498 Color fillColor(shadowColor.red(), shadowColor.green(), shadowColor.blue(), 255);
2517 context->setLegacyShadow(shadowOffset, shadowRadius, shadowColor, style.colorSpace());
2519 context->setShadow(shadowOffset, shadowRadius, shadowColor, styl
[all...]
H A DInlineTextBox.cpp437 const Color& shadowColor = shadow->color(); local
450 context->setShadow(shadowOffset, shadowRadius, shadowColor, context->fillColorSpace());
/macosx-10.10/WebCore-7600.1.25/platform/graphics/wince/
H A DGraphicsContextWinCE.cpp1165 Color shadowColor; local
1168 getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace);
1191 auto brush = createBrush(shadowColor);
1589 Color shadowColor; local
1592 && getShadow(shadowOffset, shadowBlur, shadowColor, shadowColorSpace)
1593 && shadowColor.alpha();
1597 shadowRGBColor = RGB(shadowColor.red(), shadowColor.green(), shadowColor.blue());
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DNavigationSidebarPanel.js583 shadowColor: [255, 255, 255, 0.8],
591 shadowColor: [61, 91, 110, 0.8],
H A DPopover.js417 finalContext.shadowColor = "rgba(0, 0, 0, 0.5)";
/macosx-10.10/WebCore-7600.1.25/html/canvas/
H A DCanvasRenderingContext2D.h100 String shadowColor() const;
H A DCanvasRenderingContext2D.idl55 [TreatNullAs=NullString] attribute DOMString shadowColor;

Completed in 400 milliseconds

12