/third_party/skia/tools/skpbench/ |
H A D | skpbench.cpp | 686 SkPaint stroke; in create_warmup_skp() local 687 stroke.setStyle(SkPaint::kStroke_Style); in create_warmup_skp() 688 stroke.setStrokeWidth(2); in create_warmup_skp() 692 recording->drawPath(bigPath, stroke); in create_warmup_skp()
|
/third_party/skia/src/core/ |
H A D | SkRecordDraw.cpp | 432 SkScalar stroke = std::max(op.paint.getStrokeWidth(), 0.01f); in bounds() local 433 dst.outset(stroke/2, stroke/2); in bounds()
|
H A D | SkDraw.cpp | 440 SkStrokeRec stroke(paint); in drawPoints() 447 if (as_PEB(paint.getPathEffect())->asPoints(&pointData, path, stroke, ctm, in drawPoints() 747 // We need to try to fake a thick-stroke with a modulated hairline. in SkDrawTreatAAStrokeAsHairline()
|
/third_party/skia/modules/svg/src/ |
H A D | SkSVGText.cpp | 557 const SkPaint* stroke) { in onRender() 561 if (stroke) { in onRender() 562 ctx.canvas()->drawTextBlob(blob, 0, 0, *stroke); in onRender()
|
/third_party/icu/tools/colprobe/ |
H A D | extractCollationData.pl | 70 if(/standard|phonebook|traditional|pinyin|stroke|direct/ && $colls) {
|
/third_party/skia/src/gpu/tessellate/shaders/ |
H A D | GrStrokeTessellationShader.h | 18 // Tessellates a batch of stroke patches directly to the canvas. Tessellated stroking works by 19 // creating stroke-width, orthogonal edges at set locations along the curve and then connecting them 23 // edges and sorts them into a single quad strip. With this combined set of edges we can stroke any 45 const SkStrokeRec& stroke() const { return fStroke;} in stroke() function in GrStrokeTessellationShader 89 // This common base class emits shader code for our parametric/radial stroke tessellation algorithm
|
/third_party/skia/modules/canvaskit/npm_build/ |
H A D | node.example.js | 35 ctx.stroke();
|
/third_party/skia/experimental/graphite/src/ |
H A D | DrawList.cpp | 78 const StrokeParams& stroke, in strokePath() 88 // shape, clip, ordering, paint, stroke}); in strokePath() 76 strokePath(const Transform& localToDevice, const Shape& shape, const StrokeParams& stroke, const Clip& clip, DrawOrder ordering, const PaintParams* paint) strokePath() argument
|
/third_party/skia/modules/pathkit/tests/ |
H A D | testReporter.js | 36 // a proper svg and send it off. Supports fill (nofill means just stroke it). 40 newPath.setAttribute('stroke', 'black'); 63 canvasCtx.stroke(path.toPath2D());
|
/third_party/skia/modules/canvaskit/tests/ |
H A D | testReporter.js | 36 // a proper svg and send it off. Supports fill (nofill means just stroke it). 40 newPath.setAttribute('stroke', 'black'); 63 canvasCtx.stroke(path.toPath2D());
|
/third_party/skia/modules/pathkit/ |
H A D | externs.js | 106 PathKit.SkPath.prototype.stroke = function(opts) {};
|
H A D | chaining.js | 141 PathKit.SkPath.prototype.stroke = function(opts) {
|
/kernel/linux/linux-5.10/drivers/gpu/drm/qxl/ |
H A D | qxl_dev.h | 695 struct qxl_stroke stroke; member 724 struct qxl_stroke stroke; member
|
/kernel/linux/linux-6.6/drivers/gpu/drm/qxl/ |
H A D | qxl_dev.h | 695 struct qxl_stroke stroke; member 724 struct qxl_stroke stroke; member
|
/third_party/libwebsockets/test-apps/ |
H A D | test.js | 439 ctx.stroke(); 445 ctx.stroke();
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-demos/mount-origin/ |
H A D | test.js | 439 ctx.stroke(); 445 ctx.stroke();
|
/third_party/skia/modules/canvaskit/ |
H A D | externs.js | 587 stroke: function() {}, 1121 CanvasRenderingContext2D.prototype.stroke = function() {};
|
H A D | interface.js | 329 CanvasKit.Path.prototype.stroke = function(opts) {
|
/third_party/node/deps/v8/tools/profview/ |
H A D | profview.js | 1032 ctx.stroke(); 1039 ctx.stroke(); 1059 ctx.stroke(); 1063 ctx.stroke(); 1072 ctx.stroke(); 1076 ctx.stroke();
|
/third_party/skia/experimental/docs/ |
H A D | canvasBackend.js | 74 assert('stroke' == paint.style); 75 ctx.stroke(); 82 assert('stroke' == paint.style); 125 } else if ('stroke' == paint.style) {
|
/third_party/skia/modules/canvaskit/htmlcanvas/ |
H A D | canvas2dcontext.js | 767 temp.stroke({'width': this.lineWidth, 'miter_limit': this.miterLimit, 1046 this.stroke = function(path) {
|
/third_party/skia/src/gpu/ops/ |
H A D | AAHairLinePathRenderer.cpp | 44 // AA stroke around the center-curve. See comments in push_quad_index_buffer and 446 // *just* a zero length subpath. (SVG Spec 11.4, 'stroke'). in gather_lines_and_quads() 768 const SkStrokeRec& stroke = style.strokeRec(); in Make() local 769 SkScalar capLength = SkPaint::kButt_Cap != stroke.getCap() ? hairlineCoverage * 0.5f : 0.0f; in Make()
|
/third_party/skia/src/gpu/v1/ |
H A D | Device.cpp | 514 SkStrokeRec stroke(paint); in drawDRRect() 516 if (stroke.isFillStyle() && !paint.getMaskFilter() && !paint.getPathEffect()) { in drawDRRect()
|
/third_party/skia/tests/ |
H A D | PathTest.cpp | 248 SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle); in test_path_crbugskia2820() 249 stroke.setStrokeStyle(2 * SK_Scalar1); in test_path_crbugskia2820() 250 stroke.applyToPath(&path, path); in test_path_crbugskia2820() 1452 SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle); in test_convexity2() 1453 stroke.setStrokeStyle(2 * SK_Scalar1); in test_convexity2() 1454 stroke.applyToPath(&strokedSin, strokedSin); in test_convexity2() 2570 // pass, stroke rect in test_isNestedFillRects()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |