Branch: refs/heads/main
  Home:   https://github.com/WebKit/WebKit
  Commit: 390f118d3d265f440fc035a0f538d6204da3e844
      
https://github.com/WebKit/WebKit/commit/390f118d3d265f440fc035a0f538d6204da3e844
  Author: Sam Weinig <[email protected]>
  Date:   2026-03-30 (Mon, 30 Mar 2026)

  Changed paths:
    M LayoutTests/ipc/serialized-type-info.html
    M Source/WebCore/CMakeLists.txt
    M Source/WebCore/Headers.cmake
    M Source/WebCore/Sources.txt
    M Source/WebCore/WebCore.xcodeproj/project.pbxproj
    M Source/WebCore/platform/animation/AcceleratedEffect.cpp
    M Source/WebCore/platform/animation/AcceleratedEffectValues.cpp
    M Source/WebCore/platform/animation/AcceleratedEffectValues.h
    M Source/WebCore/platform/animation/AnimationUtilities.h
    A 
Source/WebCore/platform/animation/values/AcceleratedEffectAnimationUtilities.h
    A Source/WebCore/platform/animation/values/AcceleratedEffectOffsetPath.cpp
    A Source/WebCore/platform/animation/values/AcceleratedEffectOffsetPath.h
    A 
Source/WebCore/platform/animation/values/paths/AcceleratedEffectBasicShapePath.cpp
    A 
Source/WebCore/platform/animation/values/paths/AcceleratedEffectBasicShapePath.h
    A 
Source/WebCore/platform/animation/values/paths/AcceleratedEffectBoxPath.cpp
    A Source/WebCore/platform/animation/values/paths/AcceleratedEffectBoxPath.h
    A Source/WebCore/platform/animation/values/paths/AcceleratedEffectCoordBox.h
    A 
Source/WebCore/platform/animation/values/paths/AcceleratedEffectRayPath.cpp
    A Source/WebCore/platform/animation/values/paths/AcceleratedEffectRayPath.h
    A 
Source/WebCore/platform/animation/values/paths/AcceleratedEffectReferencePath.cpp
    A 
Source/WebCore/platform/animation/values/paths/AcceleratedEffectReferencePath.h
    A 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectBasicShape.cpp
    A 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectBasicShape.h
    A 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectCircleFunction.cpp
    A 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectCircleFunction.h
    A 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectEllipseFunction.cpp
    A 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectEllipseFunction.h
    A 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectInsetFunction.cpp
    A 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectInsetFunction.h
    A 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectPathFunction.cpp
    A 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectPathFunction.h
    A 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectPolygonFunction.cpp
    A 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectPolygonFunction.h
    A 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectRayFunction.cpp
    A 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectRayFunction.h
    A 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectShapeFunction.cpp
    A 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectShapeFunction.h
    M Source/WebCore/platform/graphics/FontRanges.cpp
    M Source/WebCore/platform/graphics/cg/ImageUtilitiesCG.cpp
    M Source/WebCore/rendering/MotionPath.cpp
    M Source/WebCore/rendering/MotionPath.h
    M Source/WebCore/rendering/PathOperation.cpp
    M Source/WebCore/rendering/PathOperation.h
    M Source/WebCore/style/values/motion/StyleOffsetPath.cpp
    M Source/WebCore/style/values/motion/StyleOffsetPath.h
    M Source/WebCore/style/values/motion/StyleRayFunction.cpp
    M Source/WebCore/style/values/motion/StyleRayFunction.h
    M 
Source/WebCore/style/values/primitives/StylePrimitiveNumericTypes+Evaluation.h
    M Source/WebCore/style/values/shapes/StyleBasicShape.cpp
    M Source/WebCore/style/values/shapes/StyleBasicShape.h
    M Source/WebCore/style/values/shapes/StyleCircleFunction.cpp
    M Source/WebCore/style/values/shapes/StyleCircleFunction.h
    M Source/WebCore/style/values/shapes/StyleEllipseFunction.cpp
    M Source/WebCore/style/values/shapes/StyleEllipseFunction.h
    M Source/WebCore/style/values/shapes/StyleInsetFunction.cpp
    M Source/WebCore/style/values/shapes/StyleInsetFunction.h
    M Source/WebCore/style/values/shapes/StylePathFunction.cpp
    M Source/WebCore/style/values/shapes/StylePathFunction.h
    M Source/WebCore/style/values/shapes/StylePathOperationWrappers.cpp
    M Source/WebCore/style/values/shapes/StylePathOperationWrappers.h
    M Source/WebCore/style/values/shapes/StylePolygonFunction.cpp
    M Source/WebCore/style/values/shapes/StylePolygonFunction.h
    M Source/WebCore/style/values/shapes/StyleShapeFunction.cpp
    M Source/WebCore/style/values/shapes/StyleShapeFunction.h
    M Source/WebKit/Shared/WebCoreArgumentCoders.serialization.in

  Log Message:
  -----------
  Replace PathOperation with AcceleratedEffect specific type in 
AcceleratedEffectValues
https://bugs.webkit.org/show_bug.cgi?id=310943

Reviewed by Antti Koivisto.

Introduces `AcceleratedEffectOffsetPath`, an "absolutized" version of
`Style::OffsetPath`/`PathOperation`, for use by `AcceleratedEffectValues`.

This completes the set of "absolutized" types currently needed by
`AcceleratedEffectValues`.

* Source/WebCore/Headers.cmake:
* Source/WebCore/Sources.txt:
* Source/WebCore/WebCore.xcodeproj/project.pbxproj:
* Source/WebCore/platform/animation/AcceleratedEffect.cpp:
* Source/WebCore/platform/animation/AcceleratedEffectValues.cpp:
* Source/WebCore/platform/animation/AcceleratedEffectValues.h:
* Source/WebCore/platform/animation/AnimationUtilities.h:
* 
Source/WebCore/platform/animation/values/AcceleratedEffectAnimationUtilities.h: 
Added.
* Source/WebCore/platform/animation/values/AcceleratedEffectOffsetPath.cpp: 
Added.
* Source/WebCore/platform/animation/values/AcceleratedEffectOffsetPath.h: Added.
* 
Source/WebCore/platform/animation/values/paths/AcceleratedEffectBasicShapePath.cpp:
 Added.
* 
Source/WebCore/platform/animation/values/paths/AcceleratedEffectBasicShapePath.h:
 Added.
* Source/WebCore/platform/animation/values/paths/AcceleratedEffectBoxPath.cpp: 
Added.
* Source/WebCore/platform/animation/values/paths/AcceleratedEffectBoxPath.h: 
Added.
* Source/WebCore/platform/animation/values/paths/AcceleratedEffectCoordBox.h: 
Added.
* Source/WebCore/platform/animation/values/paths/AcceleratedEffectRayPath.cpp: 
Added.
* Source/WebCore/platform/animation/values/paths/AcceleratedEffectRayPath.h: 
Added.
* 
Source/WebCore/platform/animation/values/paths/AcceleratedEffectReferencePath.cpp:
 Added.
* 
Source/WebCore/platform/animation/values/paths/AcceleratedEffectReferencePath.h:
 Added.
* 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectBasicShape.cpp:
 Added.
* 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectBasicShape.h: 
Added.
* 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectCircleFunction.cpp:
 Added.
* 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectCircleFunction.h:
 Added.
* 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectEllipseFunction.cpp:
 Added.
* 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectEllipseFunction.h:
 Added.
* 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectInsetFunction.cpp:
 Added.
* 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectInsetFunction.h:
 Added.
* 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectPathFunction.cpp:
 Added.
* 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectPathFunction.h:
 Added.
* 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectPolygonFunction.cpp:
 Added.
* 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectPolygonFunction.h:
 Added.
* 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectRayFunction.cpp:
 Added.
* 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectRayFunction.h: 
Added.
* 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectShapeFunction.cpp:
 Added.
* 
Source/WebCore/platform/animation/values/shapes/AcceleratedEffectShapeFunction.h:
 Added.
* Source/WebCore/rendering/MotionPath.cpp:
* Source/WebCore/rendering/MotionPath.h:
* Source/WebCore/style/values/motion/StyleOffsetPath.cpp:
* Source/WebCore/style/values/motion/StyleOffsetPath.h:
* Source/WebCore/style/values/motion/StyleRayFunction.cpp:
* Source/WebCore/style/values/motion/StyleRayFunction.h:
* 
Source/WebCore/style/values/primitives/StylePrimitiveNumericTypes+Evaluation.h:
* Source/WebCore/style/values/shapes/StyleBasicShape.cpp:
* Source/WebCore/style/values/shapes/StyleBasicShape.h:
* Source/WebCore/style/values/shapes/StyleCircleFunction.cpp:
* Source/WebCore/style/values/shapes/StyleCircleFunction.h:
* Source/WebCore/style/values/shapes/StyleEllipseFunction.cpp:
* Source/WebCore/style/values/shapes/StyleEllipseFunction.h:
* Source/WebCore/style/values/shapes/StyleInsetFunction.cpp:
* Source/WebCore/style/values/shapes/StyleInsetFunction.h:
* Source/WebCore/style/values/shapes/StylePathFunction.cpp:
* Source/WebCore/style/values/shapes/StylePathFunction.h:
* Source/WebCore/style/values/shapes/StylePathOperationWrappers.cpp:
* Source/WebCore/style/values/shapes/StylePathOperationWrappers.h:
* Source/WebCore/style/values/shapes/StylePolygonFunction.cpp:
* Source/WebCore/style/values/shapes/StylePolygonFunction.h:
* Source/WebCore/style/values/shapes/StyleShapeFunction.cpp:
* Source/WebCore/style/values/shapes/StyleShapeFunction.h:
* Source/WebKit/Shared/WebCoreArgumentCoders.serialization.in:

Canonical link: https://commits.webkit.org/310214@main



To unsubscribe from these emails, change your notification settings at 
https://github.com/WebKit/WebKit/settings/notifications

Reply via email to