├── .cargo └── config ├── .gitignore ├── .vscode └── launch.json ├── Cargo.toml ├── LICENSE-MIT ├── README.md ├── Web.toml ├── gnu-mingw ├── dll │ ├── 32 │ │ └── .dummy │ └── 64 │ │ └── .dummy └── lib │ ├── 32 │ └── .dummy │ └── 64 │ └── .dummy ├── msvc ├── dll │ ├── 32 │ │ └── .dummy │ └── 64 │ │ └── .dummy └── lib │ ├── 32 │ └── .dummy │ └── 64 │ └── .dummy ├── src ├── game.rs ├── gl │ ├── camera.rs │ ├── color.rs │ ├── mod.rs │ ├── shader.rs │ ├── vao.rs │ └── vbo.rs ├── main.rs ├── scene.rs └── window.rs ├── static └── index.html └── title.txt /.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/.cargo/config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/README.md -------------------------------------------------------------------------------- /Web.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/Web.toml -------------------------------------------------------------------------------- /gnu-mingw/dll/32/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gnu-mingw/dll/64/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gnu-mingw/lib/32/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gnu-mingw/lib/64/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /msvc/dll/32/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /msvc/dll/64/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /msvc/lib/32/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /msvc/lib/64/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/src/game.rs -------------------------------------------------------------------------------- /src/gl/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/src/gl/camera.rs -------------------------------------------------------------------------------- /src/gl/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/src/gl/color.rs -------------------------------------------------------------------------------- /src/gl/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/src/gl/mod.rs -------------------------------------------------------------------------------- /src/gl/shader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/src/gl/shader.rs -------------------------------------------------------------------------------- /src/gl/vao.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/src/gl/vao.rs -------------------------------------------------------------------------------- /src/gl/vbo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/src/gl/vbo.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/scene.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/src/scene.rs -------------------------------------------------------------------------------- /src/window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/src/window.rs -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/therocode/rust_sdl2_opengl_emscripten/HEAD/static/index.html -------------------------------------------------------------------------------- /title.txt: -------------------------------------------------------------------------------- 1 | Triangle Spinner --------------------------------------------------------------------------------