├── .gitignore ├── 01_PassingArrays ├── README.md ├── build.sh ├── sum.c ├── sum.js ├── sum.js.mem └── sum_post.js ├── 02_ModifyingArrays ├── Makefile ├── README.md ├── examples │ └── example.js ├── lib │ └── square.js └── src │ ├── square.c │ └── square_post.js ├── 03_MultidimensionalArrays ├── Makefile ├── README.md ├── examples │ ├── index.js │ └── perf.js ├── lib │ └── fill.js └── src │ ├── fill.c │ └── fill_post.js ├── LICENSE ├── README.md └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /01_PassingArrays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/01_PassingArrays/README.md -------------------------------------------------------------------------------- /01_PassingArrays/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/01_PassingArrays/build.sh -------------------------------------------------------------------------------- /01_PassingArrays/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/01_PassingArrays/sum.c -------------------------------------------------------------------------------- /01_PassingArrays/sum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/01_PassingArrays/sum.js -------------------------------------------------------------------------------- /01_PassingArrays/sum.js.mem: -------------------------------------------------------------------------------- 1 | c`# -------------------------------------------------------------------------------- /01_PassingArrays/sum_post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/01_PassingArrays/sum_post.js -------------------------------------------------------------------------------- /02_ModifyingArrays/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/02_ModifyingArrays/Makefile -------------------------------------------------------------------------------- /02_ModifyingArrays/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/02_ModifyingArrays/README.md -------------------------------------------------------------------------------- /02_ModifyingArrays/examples/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/02_ModifyingArrays/examples/example.js -------------------------------------------------------------------------------- /02_ModifyingArrays/lib/square.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/02_ModifyingArrays/lib/square.js -------------------------------------------------------------------------------- /02_ModifyingArrays/src/square.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/02_ModifyingArrays/src/square.c -------------------------------------------------------------------------------- /02_ModifyingArrays/src/square_post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/02_ModifyingArrays/src/square_post.js -------------------------------------------------------------------------------- /03_MultidimensionalArrays/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/03_MultidimensionalArrays/Makefile -------------------------------------------------------------------------------- /03_MultidimensionalArrays/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03_MultidimensionalArrays/examples/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/03_MultidimensionalArrays/examples/index.js -------------------------------------------------------------------------------- /03_MultidimensionalArrays/examples/perf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/03_MultidimensionalArrays/examples/perf.js -------------------------------------------------------------------------------- /03_MultidimensionalArrays/lib/fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/03_MultidimensionalArrays/lib/fill.js -------------------------------------------------------------------------------- /03_MultidimensionalArrays/src/fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/03_MultidimensionalArrays/src/fill.c -------------------------------------------------------------------------------- /03_MultidimensionalArrays/src/fill_post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/03_MultidimensionalArrays/src/fill_post.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/emscripten-examples/HEAD/package.json --------------------------------------------------------------------------------