OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ChannelSelectorType
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/filters/
FEDisplacementMap.h
32
enum
ChannelSelectorType
{
42
static PassRefPtr<FEDisplacementMap> create(Filter*,
ChannelSelectorType
xChannelSelector,
ChannelSelectorType
yChannelSelector, float);
44
ChannelSelectorType
xChannelSelector() const;
45
bool setXChannelSelector(const
ChannelSelectorType
);
47
ChannelSelectorType
yChannelSelector() const;
48
bool setYChannelSelector(const
ChannelSelectorType
);
61
FEDisplacementMap(Filter*,
ChannelSelectorType
xChannelSelector,
ChannelSelectorType
yChannelSelector, float);
63
ChannelSelectorType
m_xChannelSelector
[
all
...]
FEDisplacementMap.cpp
38
FEDisplacementMap::FEDisplacementMap(Filter* filter,
ChannelSelectorType
xChannelSelector,
ChannelSelectorType
yChannelSelector, float scale)
46
PassRefPtr<FEDisplacementMap> FEDisplacementMap::create(Filter* filter,
ChannelSelectorType
xChannelSelector,
47
ChannelSelectorType
yChannelSelector, float scale)
52
ChannelSelectorType
FEDisplacementMap::xChannelSelector() const
57
bool FEDisplacementMap::setXChannelSelector(const
ChannelSelectorType
xChannelSelector)
65
ChannelSelectorType
FEDisplacementMap::yChannelSelector() const
70
bool FEDisplacementMap::setYChannelSelector(const
ChannelSelectorType
yChannelSelector)
146
static TextStream& operator<<(TextStream& ts, const
ChannelSelectorType
& type)
/external/webkit/Source/WebCore/svg/
SVGFEDisplacementMapElement.cpp
51
ChannelSelectorType
SVGFEDisplacementMapElement::stringToChannel(const String& key)
86
return displacementMap->setXChannelSelector(static_cast<
ChannelSelectorType
>(xChannelSelector()));
88
return displacementMap->setYChannelSelector(static_cast<
ChannelSelectorType
>(yChannelSelector()));
101
ChannelSelectorType
selector = static_cast<
ChannelSelectorType
>(xChannelSelector());
106
ChannelSelectorType
selector = static_cast<
ChannelSelectorType
>(yChannelSelector());
167
RefPtr<FilterEffect> effect = FEDisplacementMap::create(filter, static_cast<
ChannelSelectorType
>(xChannelSelector()),
168
static_cast<
ChannelSelectorType
>(yChannelSelector()), scale());
SVGFEDisplacementMapElement.h
35
static
ChannelSelectorType
stringToChannel(const String&);
Completed in 71 milliseconds