Home
last modified time | relevance | path

Searched refs:currentColor (Results 1 – 13 of 13) sorted by relevance

/external/jmonkeyengine/engine/src/test/jme3test/material/
DTestColoredTexture.java77 ColorRGBA currentColor = new ColorRGBA(); in simpleUpdate() local
78 currentColor.interpolate(prevColor, nextColor, time); in simpleUpdate()
80 mat.setColor("Color", currentColor); in simpleUpdate()
/external/webkit/Source/WebCore/css/
DSVGCSSValueKeywords.in176 #currentColor
180 #currentColor
203 #currentColor
/external/webkit/Source/WebCore/html/canvas/
DCanvasStyle.cpp67 RGBA32 currentColor(HTMLCanvasElement* canvas) in currentColor() function
84 parsedColor = currentColor(canvas); in parseColorOrCurrentColor()
DCanvasStyle.h100 RGBA32 currentColor(HTMLCanvasElement*);
DCanvasRenderingContext2D.cpp349 …style = CanvasStyle::createFromRGBA(colorWithOverrideAlpha(currentColor(canvas()), style->override… in setStrokeStyle()
351 style = CanvasStyle::createFromRGBA(currentColor(canvas())); in setStrokeStyle()
378 …style = CanvasStyle::createFromRGBA(colorWithOverrideAlpha(currentColor(canvas()), style->override… in setFillStyle()
380 style = CanvasStyle::createFromRGBA(currentColor(canvas())); in setFillStyle()
/external/webkit/Source/WebCore/platform/graphics/texmap/
DTextureMapperNode.h210 Color currentColor; member
/external/webkit/Source/WebCore/svg/
DSVGAnimateElement.cpp335 DEFINE_STATIC_LOCAL(const AtomicString, currentColor, ("currentColor")); in attributeValueIsCurrentColor()
336 return value == currentColor; in attributeValueIsCurrentColor()
/external/webkit/Source/WebCore/platform/graphics/qt/
DGraphicsLayerQt.cpp287 Color currentColor; member
/external/webkit/Source/WebCore/
DChangeLog57193 SVG 1.1 2nd Edition color-prop-05-t.svg exposes bug in 'currentColor' handling
57196 Wrong handling of currentColor on inherit
57206 <g color="green"><rect fill="currentColor"/> already worked fine in trunk, but
57207 <g fill="currentColor" color="green"><rect color="red"/> procuded a red rectangle.
57209 …In order to fix to bug we have to resolve all currentColor values for SVGPaint objects, in SVGCSSS…
57213 …exactly this way for non-SVG currentColor properties. Also fix computed styles, which did not reso…
57223 svg/animations/animate-color-fill-currentColor.html
57245 …ation::adjustSVGPaintForCurrentColor): Add helper function, resolving currentColor values for SVGP…
DChangeLog-2011-02-161508 Tests: svg/animations/animate-currentColor.html
1514 …e::SVGAnimateElement::calculateAnimatedValue): When a property value is 'inherit' or 'currentColor'
1519 string 'inherit' or 'currentColor' and if the attribute supports one of these values.
3775 SVG animation avoid unnecessary adjust for currentColor
3778 …At the moment we try to adjust every animation value for currentColor - independent of the animati…
3780 …be an expensive and unnecessary operation. Also after we adjust for currentColor, we save the resu…
DChangeLog-2010-05-2429577 SVG Animation doesn't respect 'currentColor'
29580 Test: svg/custom/animation-currentColor.svg
29582 SVG Animation can't handle currentColor at the moment. This patch catches the
29583 color value of the target element and replaces 'currentColor' with it's color string.
DChangeLog-2010-12-0633440 Canvas: "currentColor" should inherit the canvas element's color
33489 Canvas: "currentColor" should inherit the canvas element's color
33492 Add support for "currentColor" in CanvasRenderingContext2D APIs.
33493 If the canvas is in-document, "currentColor" is replaced by canvas.style.color,
33496 For gradient addColorStop(), "currentColor" always means fully opaque black.
33501 Test: fast/canvas/canvas-currentColor.html
33512 (WebCore::currentColor):
DChangeLog-2008-08-1023639 background: currentColor fails
23641 Implement currentColor from CSS3 color module.