Skip to content

Commit

Permalink
use skia directly from skia repository for recorder
Browse files Browse the repository at this point in the history
We decided to use skia from Skia's original repository for the recorder in order to take advantage of some fixes that have been done.
We are using version m113, because newer versions change the API significantly, and it wasn't worth the effort.
Eventually, we'll want to use our renderer for this.

Diffs=
ee0a1ee5d use skia directly from skia repository for recorder (#6359)

Co-authored-by: hernan <hernan@rive.app>
  • Loading branch information
bodymovin and bodymovin committed Dec 21, 2023
1 parent 692a33c commit 7e5dc85
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .rive_head
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f8004f31ef266f150bc560af02e533f851a60962
ee0a1ee5d6640c62cb7b72a530ac5e9b75bf6f84
4 changes: 4 additions & 0 deletions skia/dependencies/get_skia2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ getSkia () {

echo "Checking out branch $SKIA_BRANCH"
git checkout $SKIA_BRANCH
# Remove piet-gpu from dependencies because repository does not exist anymore
sed -i.bak -r 's/.*piet.*//g' "$PWD/DEPS"


python tools/git-sync-deps

popd
Expand Down
1 change: 1 addition & 0 deletions skia/renderer/include/to_skia.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#include "include/core/SkMatrix.h"
#include "include/core/SkPaint.h"
#include "include/core/SkBlendMode.h"
#include "include/core/SkPath.h"
#include "include/core/SkPathTypes.h"
#include "include/core/SkTileMode.h"
Expand Down

0 comments on commit 7e5dc85

Please sign in to comment.