Searched refs:ellipse (Results 1 - 9 of 9) sorted by relevance
/third_party/skia/modules/canvaskit/htmlcanvas/ |
H A D | path2d.js | 5 // arc is essentially a simpler version of ellipse. 6 ellipse(skpath, x, y, radius, radius, 0, startAngle, endAngle, ccw); 60 function ellipse(skpath, x, y, radiusX, radiusY, rotation, function 81 // Draw complete ellipse 84 // Draw complete ellipse 186 this.ellipse = function(x, y, radiusX, radiusY, rotation, 188 ellipse(this._path, x, y, radiusX, radiusY, rotation,
|
H A D | canvas2dcontext.js | 593 this.ellipse = function(x, y, radiusX, radiusY, rotation, 595 ellipse(this._currentPath, x, y, radiusX, radiusY, rotation,
|
/third_party/skia/src/gpu/ops/ |
H A D | GrOvalOpFactory.cpp | 534 * ellipse, specified as a 2D offset from center, and the reciprocals of the outer and inner radii, 633 // For stroked ellipses, we use the full ellipse equation (x^2/a^2 + y^2/b^2 = 1) 638 // ellipse size. 734 * The output of this effect is a modulation of the input color and coverage for an ellipse, 1859 const SkRect& ellipse, 1863 params.fCenter = SkPoint::Make(ellipse.centerX(), ellipse.centerY()); 1865 SkScalar ellipseXRadius = SkScalarHalf(ellipse.width()); 1866 SkScalar ellipseYRadius = SkScalarHalf(ellipse.height()); 1901 // we don't handle it if curvature of the stroke is less than curvature of the ellipse [all...] |
/third_party/skia/src/svg/ |
H A D | SkSVGDevice.cpp | 877 AutoElement ellipse("ellipse", this, fResourceBucket.get(), MxCp(this), paint); 878 ellipse.addAttribute("cx", oval.centerX()); 879 ellipse.addAttribute("cy", oval.centerY()); 880 ellipse.addAttribute("rx", oval.width() / 2); 881 ellipse.addAttribute("ry", oval.height() / 2);
|
/third_party/skia/modules/pathkit/ |
H A D | externs.js | 98 PathKit.SkPath.prototype.ellipse = function(x, y, radiusX, radiusY, rotation, startAngle, endAngle, ccw) {};
|
H A D | chaining.js | 97 PathKit.SkPath.prototype.ellipse = function(x, y, radiusX, radiusY, rotation, startAngle, endAngle, ccw) {
|
/third_party/skia/modules/canvaskit/ |
H A D | externs.js | 1098 CanvasRenderingContext2D.prototype.ellipse = function() {}; 1133 Path2D.prototype.ellipse = function() {};
|
/third_party/skia/src/gpu/ |
H A D | GrFragmentProcessor.cpp | 792 uniform float4 ellipse; 796 // d is the offset to the ellipse center 797 float2 d = sk_FragCoord.xy - ellipse.xy; 805 float2 Z = d * ellipse.zw; 854 SkV4 ellipse = {center.fX, center.fY, invRXSqd, invRYSqd}; 860 "ellipse", ellipse,
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |
Completed in 33 milliseconds