OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isEquivalentRGBA
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/html/canvas/
CanvasStyle.h
65
bool
isEquivalentRGBA
(float r, float g, float b, float a) const;
CanvasStyle.cpp
210
bool CanvasStyle::
isEquivalentRGBA
(float r, float g, float b, float a) const
CanvasRenderingContext2D.cpp
675
if (state().m_strokeStyle && state().m_strokeStyle->
isEquivalentRGBA
(grayLevel, grayLevel, grayLevel, 1.0f))
687
if (state().m_strokeStyle && state().m_strokeStyle->
isEquivalentRGBA
(grayLevel, grayLevel, grayLevel, alpha))
694
if (state().m_strokeStyle && state().m_strokeStyle->
isEquivalentRGBA
(r, g, b, a))
716
if (state().m_fillStyle && state().m_fillStyle->
isEquivalentRGBA
(grayLevel, grayLevel, grayLevel, 1.0f))
728
if (state().m_fillStyle && state().m_fillStyle->
isEquivalentRGBA
(grayLevel, grayLevel, grayLevel, alpha))
735
if (state().m_fillStyle && state().m_fillStyle->
isEquivalentRGBA
(r, g, b, a))
[
all
...]
Completed in 624 milliseconds