HomeSort by relevance Sort by last modified time
    Searched refs:stdDeviationX (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEGaussianBlurElement.idl 32 readonly attribute SVGAnimatedNumber stdDeviationX;
35 void setStdDeviation(float stdDeviationX, float stdDeviationY);
SVGFEDropShadowElement.idl 26 readonly attribute SVGAnimatedNumber stdDeviationX;
29 void setStdDeviation(float stdDeviationX, float stdDeviationY);
SVGFEGaussianBlurElement.h 34 void setStdDeviation(float stdDeviationX, float stdDeviationY);
36 SVGAnimatedNumber* stdDeviationX() { return m_stdDeviation->firstNumber(); }
SVGFEDropShadowElement.h 34 void setStdDeviation(float stdDeviationX, float stdDeviationY);
38 SVGAnimatedNumber* stdDeviationX() { return m_stdDeviation->firstNumber(); }
SVGFEGaussianBlurElement.cpp 47 stdDeviationX()->baseValue()->setValue(x);
105 if (stdDeviationX()->currentValue()->value() < 0 || stdDeviationY()->currentValue()->value() < 0)
108 RefPtr<FilterEffect> effect = FEGaussianBlur::create(filter, stdDeviationX()->currentValue()->value(), stdDeviationY()->currentValue()->value());
SVGFEDropShadowElement.cpp 51 stdDeviationX()->baseValue()->setValue(x);
117 if (stdDeviationX()->currentValue()->value() < 0 || stdDeviationY()->currentValue()->value() < 0)
130 RefPtr<FilterEffect> effect = FEDropShadow::create(filter, stdDeviationX()->currentValue()->value(), stdDeviationY()->currentValue()->value(), m_dx->currentValue()->value(), m_dy->currentValue()->value(), color, opacity);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEDropShadow.h 34 float stdDeviationX() const { return m_stdX; }
FEGaussianBlur.h 35 float stdDeviationX() const;
FEGaussianBlur.cpp 63 float FEGaussianBlur::stdDeviationX() const
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
api_filters.c 435 VGfloat stdDeviationX,
438 VGfloat mult = 1 / ( 2 * M_PI * stdDeviationX * stdDeviationY);
439 VGfloat e = exp( - ( pow(x, 2)/(2*pow(stdDeviationX, 2)) +
454 VGfloat stdDeviationX,
465 stdDeviationX, stdDeviationY);
479 VGfloat stdDeviationX,
495 if (stdDeviationX <= 0 || stdDeviationY <= 0) {
514 kernel_width = compute_kernel_size(stdDeviationX);
519 stdDeviationX, stdDeviationY);
  /external/mesa3d/src/gallium/state_trackers/vega/
api_filters.c 435 VGfloat stdDeviationX,
438 VGfloat mult = 1 / ( 2 * M_PI * stdDeviationX * stdDeviationY);
439 VGfloat e = exp( - ( pow(x, 2)/(2*pow(stdDeviationX, 2)) +
454 VGfloat stdDeviationX,
465 stdDeviationX, stdDeviationY);
479 VGfloat stdDeviationX,
495 if (stdDeviationX <= 0 || stdDeviationY <= 0) {
514 kernel_width = compute_kernel_size(stdDeviationX);
519 stdDeviationX, stdDeviationY);
  /external/chromium_org/third_party/mesa/src/include/VG/
openvg.h     [all...]
  /external/mesa3d/include/VG/
openvg.h     [all...]

Completed in 545 milliseconds