OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FEColorMatrix
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEColorMatrix.h
40
class PLATFORM_EXPORT
FEColorMatrix
: public FilterEffect {
42
static PassRefPtr<
FEColorMatrix
> create(Filter*, ColorMatrixType, const Vector<float>&);
58
FEColorMatrix
(Filter*, ColorMatrixType, const Vector<float>&);
67
inline void
FEColorMatrix
::calculateSaturateComponents(float* components, float value)
80
inline void
FEColorMatrix
::calculateHueRotateComponents(float* components, float value)
FEColorMatrix.cpp
25
#include "platform/graphics/filters/
FEColorMatrix
.h"
38
FEColorMatrix
::
FEColorMatrix
(Filter* filter, ColorMatrixType type, const Vector<float>& values)
45
PassRefPtr<
FEColorMatrix
>
FEColorMatrix
::create(Filter* filter, ColorMatrixType type, const Vector<float>& values)
47
return adoptRef(new
FEColorMatrix
(filter, type, values));
50
ColorMatrixType
FEColorMatrix
::type() const
55
bool
FEColorMatrix
::setType(ColorMatrixType type)
63
const Vector<float>&
FEColorMatrix
::values() const
68
bool
FEColorMatrix
::setValues(const Vector<float> &values
[
all
...]
Completed in 27 milliseconds