-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
5f6ea0da19c6d1b517ba091d84706141c9a6f59f | ||
21ecf27753b8eedd68ec732b2b2a76c4a4cdb1d8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,21 +2,21 @@ | |
|
||
The Rive Renderer is a vector and raster graphics renderer custom-built for Rive content, for animation, and for runtime. | ||
|
||
This repository contains the renderer code and an example for how to interface with it directly. The code within this repository does not contain a Rive runtime. It contains the best in class concrete implementation of Rive's rendering abstraction layer, which we call the Rive Renderer. | ||
This folder contains the renderer code and an example for how to interface with it directly. It contains the best in class concrete implementation of Rive's rendering abstraction layer, which we call the Rive Renderer. | ||
|
||
## Clone this repo | ||
|
||
Make sure to clone this repo with submodules! | ||
## Clone the rive-runtime repo | ||
|
||
``` | ||
git clone --recurse-submodules [email protected]:rive-app/rive-renderer.git | ||
git clone https://github.com/rive-app/rive-runtime.git | ||
cd rive-runtime/pls | ||
``` | ||
|
||
## Build GLFW | ||
|
||
``` | ||
cd submodules/rive-cpp/skia/dependencies | ||
pushd ../skia/dependencies | ||
./make_glfw.sh | ||
popd | ||
``` | ||
|
||
## Install Python PLY | ||
|
@@ -28,7 +28,7 @@ python3 -m pip install ply | |
## Add build_rive.sh to $PATH | ||
|
||
``` | ||
export PATH="$PATH:$(pwd)/submodules/rive-cpp/build" | ||
export PATH="$PATH:$(realpath ../build)" | ||
``` | ||
|
||
## Build & run | ||
|