Skip to content

M144 public#356

Open
HinTak wants to merge 142 commits intokyamagu:mainfrom
HinTak:m144-public
Open

M144 public#356
HinTak wants to merge 142 commits intokyamagu:mainfrom
HinTak:m144-public

Conversation

@HinTak
Copy link
Collaborator

@HinTak HinTak commented Dec 9, 2025

There is no significant changes beyond m143. This is mostly routine update on top of m143.

HinTak added 30 commits June 25, 2025 17:58
…, and removed.

It was deprecated in m139, and gone in m140.

Milestone 139
-------------
  * `SkFontMgr_New_FontConfig` with 1 parameter has been deprecated and will be removed in a future
    release. Clients will need to call the other version providing an SkFontScanner (e.g.
    `SkFontScanner_Make_FreeType()`)

Conflicts:
	src/skia/Font.cpp
…favor of the `SkRecorder*` version.

Milestone 140
-------------
  * `SkImage::isValid(GrRecordingContext*)` has been deprecated in favor of the `SkRecorder*` version.
    To migrate do something like `image->isValid(ctx->asRecorder())`.

    `SkImage::makeSubset(GrDirectContext*, ...)` has been deprecated in favor of the `SkRecorder*`
    version. To migrate, do something like `image->makeSubset(ctx->asRecorder, ..., {})`

    `SkImage::makeColorSpace(GrDirectContext*, ...)` has been deprecated in favor of the `SkRecorder*`
    version. To migrate, do something like `image->makeColorSpace(ctx->asRecorder, ..., {})`

    `SkImage::makeColorTypeAndColorSpace(GrDirectContext*, ...)` has been deprecated in favor of the
    `SkRecorder*` version. To migrate, do something like
    `image->makeColorTypeAndColorSpace(ctx->asRecorder, ..., {})`

    In the case you are working with CPU-backed images, `skcpu::Recorder::TODO()` should work until
    a `skcpu::Context` and `skcpu::Recorder` can be used properly.
…atrix.inverse()

m139:
    bool setPolyToPoly(const SkPoint src[], const SkPoint dst[], int count);
m140:
    bool setPolyToPoly(SkSpan<const SkPoint> src, SkSpan<const SkPoint> dst);

Before m140, only (deprecated):
    [[nodiscard]] bool invert(SkMatrix* inverse) const;
Added in m140:
    std::optional<SkMatrix> invert() const;
Old:
    bool getSegment(SkScalar startD, SkScalar stopD, SkPath* dst, bool startWithMoveTo);
Newly added:
    bool getSegment(SkScalar startD, SkScalar stopD, SkPathBuilder* dst, bool startWithMoveTo);
Old:
    bool transform(const SkMatrix& matrix, SkRRect* dst) const;
Newly added:
    std::optional<SkRRect> transform(const SkMatrix& matrix) const;
Old:
    bool getBoundaryPath(SkPath* path) const;
Newly added:
    SkPath getBoundaryPath() const;
was:
    bool applyToPath(SkPath* dst, const SkPath& src) const;
m140:
    bool applyToPath(SkPathBuilder* dst, const SkPath& src) const;
This reverts commit cd8af0c.

Should not be needed in m140.
See actions/runner-images#13046
macOS 13 is fully unsupported by December 4th 2025 for GitHub.
See actions/runner-images#13046
macOS 13 is fully unsupported by December 4th 2025 for GitHub.
See actions/runner-images#13046
macOS 13 is fully unsupported by December 4th 2025 for GitHub.
See actions/runner-images#13046
macOS 13 is fully unsupported by December 4th 2025 for GitHub.
Revert "last sync"

This reverts commit cd1a64b.
Revert "More difference between local and remote; to investigate crash"

This reverts commit 6d48e0c.
Revert "Enabling some debug features, to aid debugging pybind11 3.x crashes"

This reverts commit def00d3.
Revert "Skip pybind11 3.0.0 until it get fixed (waiting for 3.0.1)"

This reverts commit 443a499.
Revert "Make artefacts available even when pytest fails."

This reverts commit a057e3c.
Revert "Make artefacts available even when pytest fails."

This reverts commit a057e3c.
Revert "Make artefacts available even when pytest fails."

This reverts commit a057e3c.
Revert "Make artefacts available even when pytest fails."

This reverts commit a057e3c.
m140-public includes everything in m139-public.

Merge remote-tracking branch 'origin/m139-public' into m140-public
Merge remote-tracking branch 'origin/m140-public' into m141-public
Merge remote-tracking branch 'origin/m141-public' into m142-public
Revert "Make artefacts available even when pytest fails."

This reverts commit a057e3c.
Merge remote-tracking branch 'origin/m142-public' into m143-public
Merge remote-tracking branch 'origin/m143-public' into m144-public
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants