diff options
author | Eric Bailey <git@esb.lol> | 2025-04-07 20:29:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-07 18:29:41 -0700 |
commit | 872fcd1d20e2e3981eca77190b3eaa380b9aca76 (patch) | |
tree | c88c383a256699cbc4c775eb1735937e70273f2c /patches/react-native-svg+15.9.0.patch | |
parent | d496b5bdbff64b02baf00654c3a82bfe7153bf77 (diff) | |
download | voidsky-872fcd1d20e2e3981eca77190b3eaa380b9aca76.tar.zst |
Update patches (#8151)
* Update patches after #8133 * Bump deps * Revert @react-native-picker/picker downgrade * Migrate RN patch
Diffstat (limited to 'patches/react-native-svg+15.9.0.patch')
-rw-r--r-- | patches/react-native-svg+15.9.0.patch | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/patches/react-native-svg+15.9.0.patch b/patches/react-native-svg+15.9.0.patch deleted file mode 100644 index 54540023f..000000000 --- a/patches/react-native-svg+15.9.0.patch +++ /dev/null @@ -1,57 +0,0 @@ -diff --git a/node_modules/react-native-svg/android/src/main/java/com/horcrux/svg/PathView.java b/node_modules/react-native-svg/android/src/main/java/com/horcrux/svg/PathView.java -index 06829bd..1b15818 100644 ---- a/node_modules/react-native-svg/android/src/main/java/com/horcrux/svg/PathView.java -+++ b/node_modules/react-native-svg/android/src/main/java/com/horcrux/svg/PathView.java -@@ -14,17 +14,33 @@ import android.graphics.Paint; - import android.graphics.Path; - import com.facebook.react.bridge.ReactContext; - -+import java.util.ArrayList; -+import java.util.HashMap; -+ -+class ParsedPath { -+ final Path path; -+ final ArrayList<PathElement> elements; -+ -+ ParsedPath(Path path, ArrayList<PathElement> elements) { -+ this.path = path; -+ this.elements = elements; -+ } -+} -+ - @SuppressLint("ViewConstructor") - class PathView extends RenderableView { - private Path mPath; - -+ // This grows forever but for our use case (static icons) it's ok. -+ private static final HashMap<String, ParsedPath> sPathCache = new HashMap<>(); -+ - public PathView(ReactContext reactContext) { - super(reactContext); - PathParser.mScale = mScale; - mPath = new Path(); - } - -- public void setD(String d) { -+ void setDByParsing(String d) { - mPath = PathParser.parse(d); - elements = PathParser.elements; - for (PathElement elem : elements) { -@@ -33,6 +49,17 @@ class PathView extends RenderableView { - point.y *= mScale; - } - } -+ } -+ -+ public void setD(String d) { -+ ParsedPath cached = sPathCache.get(d); -+ if (cached != null) { -+ mPath = cached.path; -+ elements = cached.elements; -+ } else { -+ setDByParsing(d); -+ sPathCache.put(d, new ParsedPath(mPath, elements)); -+ } - invalidate(); - } - |