-
Notifications
You must be signed in to change notification settings - Fork 20
Tree as of 2020 03 21
$ tree common server client common ├── Cargo.toml └── src ├── codec.rs ├── cursor.rs ├── dodeca.rs ├── graph.rs ├── id.rs ├── lib.rs ├── math │ ├── isometry.rs │ └── mod.rs ├── proto.rs └── world.rs server ├── Cargo.toml └── src ├── config.rs ├── lib.rs ├── main.rs └── sim.rs client ├── Cargo.toml ├── shaders │ ├── common.h │ ├── fullscreen.vert │ ├── sky.frag │ ├── surface-extraction │ │ ├── common.h │ │ ├── count.comp │ │ ├── emit.comp │ │ ├── prefix-sum.comp │ │ └── surface.h │ ├── voxels.frag │ └── voxels.vert └── src ├── config.rs ├── graphics │ ├── base.rs │ ├── core.rs │ ├── draw.rs │ ├── loader.rs │ ├── lru_table.rs │ ├── mod.rs │ ├── png_array.rs │ ├── sky.rs │ ├── tests.rs │ ├── voxels │ │ ├── mod.rs │ │ ├── surface_extraction.rs │ │ ├── surface.rs │ │ └── tests.rs │ └── window.rs ├── main.rs ├── net.rs └── sim.rs