This repo is not used anymore. Development of Orca was moved here: https://github.com/orca-app/orca
https://orca-app.dev/
Reuben Dunnington
71236240ab
* Removes core_api and gles_api .txt bindings and replaces them with .json versions * Rename bindgen2.py to bindgen.py, effectively deleting the old script * Update build.bat to reflect new changes |
||
---|---|---|
cstdlib | ||
ext/wasm3 | ||
milepost@442d86386e | ||
resources | ||
samples | ||
scripts | ||
sdk | ||
src | ||
test/bulkmem | ||
.gitignore | ||
.gitmodules | ||
Readme.md | ||
build.bat | ||
build.sh |
Readme.md
Install
Clone the repo with the --recurse-submodules
option.
Get and build ANGLE (see milepost/ext/angle_install_notes.md
), and put libEGL.dylib
and libGLESv2.dylib
in milepost/bin
.
Cd to orca and build milepost (the platform layer), wasm3 (the wasm runtime), then orca:
cd Orca
./build.sh milepost
./build.sh wasm3
./build.sh orca
Build the sample orca app:
pushd samples/pong ; ./build.sh ; popd
This creates a Pong.app
bundle in samples/pong
that you can double click to run.
You can also build milepost example apps like so:
cd milepost
pushd examples/canvas ; ./build.sh ; popd
pushd examples/perf_text ; ./build.sh ; popd
pushd examples/tiger ; ./build.sh ; popd