├── .github ├── CODEOWNERS ├── dependabot.yml └── labels.json ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── js-api-examples ├── compile-streaming.html ├── fail.html ├── fail.wasm ├── fail.wat ├── global.html ├── global.wasm ├── global.wat ├── imports.html ├── index-compile.html ├── index.html ├── index_concise.html ├── instantiate-streaming.html ├── memory.html ├── memory.wasm ├── memory.wat ├── simple.wasm ├── simple.wat ├── table.html ├── table.wasm ├── table.wat ├── table2.html ├── table2.wasm ├── table2.wat ├── validate.html ├── wasm_worker.js └── xhr-wasm.html ├── js-builtin-examples ├── README.md ├── compile-streaming │ ├── index.html │ ├── index.js │ └── log-concat.wasm ├── compile │ ├── index.html │ ├── index.js │ └── log-concat.wasm ├── instantiate-streaming │ ├── index.html │ ├── index.js │ └── log-concat.wasm ├── instantiate │ ├── index.html │ ├── index.js │ └── log-concat.wasm ├── log-concat.wat ├── module-constructor │ ├── index.html │ ├── index.js │ └── log-concat.wasm └── validate │ ├── index.html │ ├── index.js │ └── log-concat.wasm ├── other-examples ├── custom-section.html ├── simple-name-section.wasm ├── simple-name-section.wat ├── simple.wasm ├── table-set.html └── table.wasm ├── rust-js ├── Cargo.lock ├── Cargo.toml ├── README.md ├── index.html ├── site │ ├── index.html │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── webpack.config.js └── src │ └── lib.rs ├── template └── template.html ├── understanding-text-format ├── add.html ├── add.wasm ├── add.wat ├── call.html ├── call.wasm ├── call.wat ├── empty.wasm ├── empty.wat ├── logger.html ├── logger.wasm ├── logger.wat ├── logger2.html ├── logger2.wasm ├── logger2.wat ├── memory-export.html ├── memory-export.wasm ├── memory-export.wat ├── multi-memory.html ├── multi-memory.wasm ├── multi-memory.wat ├── shared-address-space.html ├── shared0.wasm ├── shared0.wat ├── shared1.wasm ├── shared1.wat ├── wasm-table.html ├── wasm-table.wasm └── wasm-table.wat └── wasm-sobel ├── README.md ├── SOBEL-LICENSE.md ├── change.asm.js ├── change.c ├── change.js ├── change.wasm ├── change.wast ├── index.html ├── smoothie.js └── sobel.js /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/.github/labels.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | target 3 | dist 4 | .DS_Store 5 | .vscode/ 6 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /js-api-examples/compile-streaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/compile-streaming.html -------------------------------------------------------------------------------- /js-api-examples/fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/fail.html -------------------------------------------------------------------------------- /js-api-examples/fail.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/fail.wasm -------------------------------------------------------------------------------- /js-api-examples/fail.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/fail.wat -------------------------------------------------------------------------------- /js-api-examples/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/global.html -------------------------------------------------------------------------------- /js-api-examples/global.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/global.wasm -------------------------------------------------------------------------------- /js-api-examples/global.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/global.wat -------------------------------------------------------------------------------- /js-api-examples/imports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/imports.html -------------------------------------------------------------------------------- /js-api-examples/index-compile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/index-compile.html -------------------------------------------------------------------------------- /js-api-examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/index.html -------------------------------------------------------------------------------- /js-api-examples/index_concise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/index_concise.html -------------------------------------------------------------------------------- /js-api-examples/instantiate-streaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/instantiate-streaming.html -------------------------------------------------------------------------------- /js-api-examples/memory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/memory.html -------------------------------------------------------------------------------- /js-api-examples/memory.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/memory.wasm -------------------------------------------------------------------------------- /js-api-examples/memory.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/memory.wat -------------------------------------------------------------------------------- /js-api-examples/simple.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/simple.wasm -------------------------------------------------------------------------------- /js-api-examples/simple.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/simple.wat -------------------------------------------------------------------------------- /js-api-examples/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/table.html -------------------------------------------------------------------------------- /js-api-examples/table.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/table.wasm -------------------------------------------------------------------------------- /js-api-examples/table.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/table.wat -------------------------------------------------------------------------------- /js-api-examples/table2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/table2.html -------------------------------------------------------------------------------- /js-api-examples/table2.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/table2.wasm -------------------------------------------------------------------------------- /js-api-examples/table2.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/table2.wat -------------------------------------------------------------------------------- /js-api-examples/validate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/validate.html -------------------------------------------------------------------------------- /js-api-examples/wasm_worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/wasm_worker.js -------------------------------------------------------------------------------- /js-api-examples/xhr-wasm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-api-examples/xhr-wasm.html -------------------------------------------------------------------------------- /js-builtin-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/README.md -------------------------------------------------------------------------------- /js-builtin-examples/compile-streaming/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/compile-streaming/index.html -------------------------------------------------------------------------------- /js-builtin-examples/compile-streaming/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/compile-streaming/index.js -------------------------------------------------------------------------------- /js-builtin-examples/compile-streaming/log-concat.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/compile-streaming/log-concat.wasm -------------------------------------------------------------------------------- /js-builtin-examples/compile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/compile/index.html -------------------------------------------------------------------------------- /js-builtin-examples/compile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/compile/index.js -------------------------------------------------------------------------------- /js-builtin-examples/compile/log-concat.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/compile/log-concat.wasm -------------------------------------------------------------------------------- /js-builtin-examples/instantiate-streaming/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/instantiate-streaming/index.html -------------------------------------------------------------------------------- /js-builtin-examples/instantiate-streaming/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/instantiate-streaming/index.js -------------------------------------------------------------------------------- /js-builtin-examples/instantiate-streaming/log-concat.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/instantiate-streaming/log-concat.wasm -------------------------------------------------------------------------------- /js-builtin-examples/instantiate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/instantiate/index.html -------------------------------------------------------------------------------- /js-builtin-examples/instantiate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/instantiate/index.js -------------------------------------------------------------------------------- /js-builtin-examples/instantiate/log-concat.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/instantiate/log-concat.wasm -------------------------------------------------------------------------------- /js-builtin-examples/log-concat.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/log-concat.wat -------------------------------------------------------------------------------- /js-builtin-examples/module-constructor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/module-constructor/index.html -------------------------------------------------------------------------------- /js-builtin-examples/module-constructor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/module-constructor/index.js -------------------------------------------------------------------------------- /js-builtin-examples/module-constructor/log-concat.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/module-constructor/log-concat.wasm -------------------------------------------------------------------------------- /js-builtin-examples/validate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/validate/index.html -------------------------------------------------------------------------------- /js-builtin-examples/validate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/validate/index.js -------------------------------------------------------------------------------- /js-builtin-examples/validate/log-concat.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/js-builtin-examples/validate/log-concat.wasm -------------------------------------------------------------------------------- /other-examples/custom-section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/other-examples/custom-section.html -------------------------------------------------------------------------------- /other-examples/simple-name-section.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/other-examples/simple-name-section.wasm -------------------------------------------------------------------------------- /other-examples/simple-name-section.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/other-examples/simple-name-section.wat -------------------------------------------------------------------------------- /other-examples/simple.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/other-examples/simple.wasm -------------------------------------------------------------------------------- /other-examples/table-set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/other-examples/table-set.html -------------------------------------------------------------------------------- /other-examples/table.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/other-examples/table.wasm -------------------------------------------------------------------------------- /rust-js/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/rust-js/Cargo.lock -------------------------------------------------------------------------------- /rust-js/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/rust-js/Cargo.toml -------------------------------------------------------------------------------- /rust-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/rust-js/README.md -------------------------------------------------------------------------------- /rust-js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/rust-js/index.html -------------------------------------------------------------------------------- /rust-js/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/rust-js/site/index.html -------------------------------------------------------------------------------- /rust-js/site/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/rust-js/site/index.js -------------------------------------------------------------------------------- /rust-js/site/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/rust-js/site/package-lock.json -------------------------------------------------------------------------------- /rust-js/site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/rust-js/site/package.json -------------------------------------------------------------------------------- /rust-js/site/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/rust-js/site/webpack.config.js -------------------------------------------------------------------------------- /rust-js/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/rust-js/src/lib.rs -------------------------------------------------------------------------------- /template/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/template/template.html -------------------------------------------------------------------------------- /understanding-text-format/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/add.html -------------------------------------------------------------------------------- /understanding-text-format/add.wasm: -------------------------------------------------------------------------------- 1 | asm`add 2 |  j -------------------------------------------------------------------------------- /understanding-text-format/add.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/add.wat -------------------------------------------------------------------------------- /understanding-text-format/call.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/call.html -------------------------------------------------------------------------------- /understanding-text-format/call.wasm: -------------------------------------------------------------------------------- 1 | asm`getAnswerPlus1 2 | A* Aj -------------------------------------------------------------------------------- /understanding-text-format/call.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/call.wat -------------------------------------------------------------------------------- /understanding-text-format/empty.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /understanding-text-format/empty.wat: -------------------------------------------------------------------------------- 1 | (module) 2 | -------------------------------------------------------------------------------- /understanding-text-format/logger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/logger.html -------------------------------------------------------------------------------- /understanding-text-format/logger.wasm: -------------------------------------------------------------------------------- 1 | asm``consolelog logIt 2 | A  -------------------------------------------------------------------------------- /understanding-text-format/logger.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/logger.wat -------------------------------------------------------------------------------- /understanding-text-format/logger2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/logger2.html -------------------------------------------------------------------------------- /understanding-text-format/logger2.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/logger2.wasm -------------------------------------------------------------------------------- /understanding-text-format/logger2.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/logger2.wat -------------------------------------------------------------------------------- /understanding-text-format/memory-export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/memory-export.html -------------------------------------------------------------------------------- /understanding-text-format/memory-export.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/memory-export.wasm -------------------------------------------------------------------------------- /understanding-text-format/memory-export.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/memory-export.wat -------------------------------------------------------------------------------- /understanding-text-format/multi-memory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/multi-memory.html -------------------------------------------------------------------------------- /understanding-text-format/multi-memory.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/multi-memory.wasm -------------------------------------------------------------------------------- /understanding-text-format/multi-memory.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/multi-memory.wat -------------------------------------------------------------------------------- /understanding-text-format/shared-address-space.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/shared-address-space.html -------------------------------------------------------------------------------- /understanding-text-format/shared0.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/shared0.wasm -------------------------------------------------------------------------------- /understanding-text-format/shared0.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/shared0.wat -------------------------------------------------------------------------------- /understanding-text-format/shared1.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/shared1.wasm -------------------------------------------------------------------------------- /understanding-text-format/shared1.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/shared1.wat -------------------------------------------------------------------------------- /understanding-text-format/wasm-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/wasm-table.html -------------------------------------------------------------------------------- /understanding-text-format/wasm-table.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/wasm-table.wasm -------------------------------------------------------------------------------- /understanding-text-format/wasm-table.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/understanding-text-format/wasm-table.wat -------------------------------------------------------------------------------- /wasm-sobel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/wasm-sobel/README.md -------------------------------------------------------------------------------- /wasm-sobel/SOBEL-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/wasm-sobel/SOBEL-LICENSE.md -------------------------------------------------------------------------------- /wasm-sobel/change.asm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/wasm-sobel/change.asm.js -------------------------------------------------------------------------------- /wasm-sobel/change.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/wasm-sobel/change.c -------------------------------------------------------------------------------- /wasm-sobel/change.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/wasm-sobel/change.js -------------------------------------------------------------------------------- /wasm-sobel/change.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/wasm-sobel/change.wasm -------------------------------------------------------------------------------- /wasm-sobel/change.wast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/wasm-sobel/change.wast -------------------------------------------------------------------------------- /wasm-sobel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/wasm-sobel/index.html -------------------------------------------------------------------------------- /wasm-sobel/smoothie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/wasm-sobel/smoothie.js -------------------------------------------------------------------------------- /wasm-sobel/sobel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdn/webassembly-examples/HEAD/wasm-sobel/sobel.js --------------------------------------------------------------------------------