Searched refs:grayLevel (Results 1 – 6 of 6) sorted by relevance
/external/webkit/Source/WebCore/html/canvas/ |
D | CanvasRenderingContext2D.h | 125 void setStrokeColor(float grayLevel); 127 void setStrokeColor(float grayLevel, float alpha); 132 void setFillColor(float grayLevel); 134 void setFillColor(float grayLevel, float alpha); 162 void setShadow(float width, float height, float blur, float grayLevel); 164 void setShadow(float width, float height, float blur, float grayLevel, float alpha);
|
D | CanvasRenderingContext2D.cpp | 673 void CanvasRenderingContext2D::setStrokeColor(float grayLevel) in setStrokeColor() argument 675 …e().m_strokeStyle && state().m_strokeStyle->isEquivalentRGBA(grayLevel, grayLevel, grayLevel, 1.0f… in setStrokeColor() 677 setStrokeStyle(CanvasStyle::createFromGrayLevelWithAlpha(grayLevel, 1.0f)); in setStrokeColor() 685 void CanvasRenderingContext2D::setStrokeColor(float grayLevel, float alpha) in setStrokeColor() argument 687 …e().m_strokeStyle && state().m_strokeStyle->isEquivalentRGBA(grayLevel, grayLevel, grayLevel, alph… in setStrokeColor() 689 setStrokeStyle(CanvasStyle::createFromGrayLevelWithAlpha(grayLevel, alpha)); in setStrokeColor() 714 void CanvasRenderingContext2D::setFillColor(float grayLevel) in setFillColor() argument 716 …state().m_fillStyle && state().m_fillStyle->isEquivalentRGBA(grayLevel, grayLevel, grayLevel, 1.0f… in setFillColor() 718 setFillStyle(CanvasStyle::createFromGrayLevelWithAlpha(grayLevel, 1.0f)); in setFillColor() 726 void CanvasRenderingContext2D::setFillColor(float grayLevel, float alpha) in setFillColor() argument [all …]
|
D | CanvasStyle.h | 47 …sStyle> createFromGrayLevelWithAlpha(float grayLevel, float alpha) { return adoptRef(new CanvasSty… in createFromGrayLevelWithAlpha() argument 73 CanvasStyle(float grayLevel, float alpha);
|
D | CanvasStyle.cpp | 106 CanvasStyle::CanvasStyle(float grayLevel, float alpha) in CanvasStyle() argument 108 , m_rgba(makeRGBA32FromFloats(grayLevel, grayLevel, grayLevel, alpha)) in CanvasStyle()
|
D | CanvasRenderingContext2D.idl | 107 void setStrokeColor(in float grayLevel, in [Optional] float alpha); 112 void setFillColor(in float grayLevel, in [Optional] float alpha); 143 …void setShadow(in float width, in float height, in float blur, in float grayLevel, in [Optional] f…
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-12-06 | 76196 The unused CanvasStyle::create(grayLevel) and accompanying constructor
|