├── .github └── workflows │ └── mdbook.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── book.toml ├── chapter-code ├── .gitignore ├── 03-buffer-creation │ └── main.rs ├── 04-compute-pipeline │ └── main.rs ├── 05-images │ ├── image_clear.rs │ ├── main.rs │ └── mandelbrot.rs ├── 06-graphics-pipeline │ └── main.rs ├── 07-windowing │ └── main.rs ├── Cargo.toml ├── README.md ├── src │ └── lib.rs └── wip │ ├── bin │ ├── more_on_buffers │ │ ├── app.rs │ │ ├── main.rs │ │ └── render │ │ │ ├── mod.rs │ │ │ ├── render_loop.rs │ │ │ └── renderer.rs │ └── restructuring │ │ ├── app.rs │ │ ├── main.rs │ │ └── render │ │ ├── mod.rs │ │ ├── render_loop.rs │ │ └── renderer.rs │ ├── game_objects │ ├── mod.rs │ └── square.rs │ ├── lib.rs │ ├── models │ ├── mod.rs │ ├── square.rs │ └── traits.rs │ ├── shaders │ ├── mod.rs │ ├── movable_square │ │ ├── fragment.glsl │ │ ├── mod.rs │ │ └── vertex.glsl │ └── static_triangle │ │ ├── fragment.glsl │ │ ├── mod.rs │ │ └── vertex.glsl │ ├── vertex_data.rs │ └── vulkano_objects │ ├── allocators.rs │ ├── buffers.rs │ ├── command_buffers.rs │ ├── instance.rs │ ├── mod.rs │ ├── physical_device.rs │ ├── pipeline.rs │ ├── render_pass.rs │ └── swapchain.rs ├── src ├── 01-introduction │ └── 01-introduction.md ├── 02-initialization │ ├── 01-initialization.md │ └── 02-device-creation.md ├── 03-buffer-creation │ ├── 01-buffer-creation.md │ └── 02-example-operation.md ├── 04-compute-pipeline │ ├── 01-compute-intro.md │ ├── 02-compute-pipeline.md │ ├── 03-descriptor-sets.md │ ├── 04-dispatch.md │ ├── guide-compute-pipeline-1.svg │ └── guide-descriptor-sets-1.svg ├── 05-images │ ├── 01-image-creation.md │ ├── 02-image-clear.md │ ├── 03-image-export.md │ ├── 04-mandelbrot.md │ ├── guide-image-creation-1.png │ ├── guide-image-export-1.png │ └── guide-mandelbrot-1.png ├── 06-graphics-pipeline │ ├── 01-introduction.md │ ├── 02-vertex-shader.md │ ├── 03-fragment-shader.md │ ├── 04-render-pass-framebuffer.md │ ├── 05-pipeline-creation.md │ ├── guide-fragment-shader-1.svg │ ├── guide-graphics-pipeline-creation-1.png │ ├── guide-vertex-input-1.svg │ └── guide-vertex-input-2.svg ├── 07-windowing │ ├── 01-introduction.md │ ├── 02-swapchain-creation.md │ ├── 03-other-initialization.md │ └── 04-event-handling.md ├── SUMMARY.md ├── about.md ├── contributors.md └── wip │ ├── guide-buffer-creation-1.svg │ └── memory.md └── theme ├── favicon.png └── highlight.js /.github/workflows/mdbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/.github/workflows/mdbook.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | 3 | /target 4 | .idea 5 | Cargo.lock 6 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/README.md -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/book.toml -------------------------------------------------------------------------------- /chapter-code/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .idea 3 | image.png 4 | Cargo.lock 5 | -------------------------------------------------------------------------------- /chapter-code/03-buffer-creation/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/03-buffer-creation/main.rs -------------------------------------------------------------------------------- /chapter-code/04-compute-pipeline/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/04-compute-pipeline/main.rs -------------------------------------------------------------------------------- /chapter-code/05-images/image_clear.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/05-images/image_clear.rs -------------------------------------------------------------------------------- /chapter-code/05-images/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/05-images/main.rs -------------------------------------------------------------------------------- /chapter-code/05-images/mandelbrot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/05-images/mandelbrot.rs -------------------------------------------------------------------------------- /chapter-code/06-graphics-pipeline/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/06-graphics-pipeline/main.rs -------------------------------------------------------------------------------- /chapter-code/07-windowing/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/07-windowing/main.rs -------------------------------------------------------------------------------- /chapter-code/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/Cargo.toml -------------------------------------------------------------------------------- /chapter-code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/README.md -------------------------------------------------------------------------------- /chapter-code/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/src/lib.rs -------------------------------------------------------------------------------- /chapter-code/wip/bin/more_on_buffers/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/bin/more_on_buffers/app.rs -------------------------------------------------------------------------------- /chapter-code/wip/bin/more_on_buffers/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/bin/more_on_buffers/main.rs -------------------------------------------------------------------------------- /chapter-code/wip/bin/more_on_buffers/render/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/bin/more_on_buffers/render/mod.rs -------------------------------------------------------------------------------- /chapter-code/wip/bin/more_on_buffers/render/render_loop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/bin/more_on_buffers/render/render_loop.rs -------------------------------------------------------------------------------- /chapter-code/wip/bin/more_on_buffers/render/renderer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/bin/more_on_buffers/render/renderer.rs -------------------------------------------------------------------------------- /chapter-code/wip/bin/restructuring/app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/bin/restructuring/app.rs -------------------------------------------------------------------------------- /chapter-code/wip/bin/restructuring/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/bin/restructuring/main.rs -------------------------------------------------------------------------------- /chapter-code/wip/bin/restructuring/render/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/bin/restructuring/render/mod.rs -------------------------------------------------------------------------------- /chapter-code/wip/bin/restructuring/render/render_loop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/bin/restructuring/render/render_loop.rs -------------------------------------------------------------------------------- /chapter-code/wip/bin/restructuring/render/renderer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/bin/restructuring/render/renderer.rs -------------------------------------------------------------------------------- /chapter-code/wip/game_objects/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/game_objects/mod.rs -------------------------------------------------------------------------------- /chapter-code/wip/game_objects/square.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/game_objects/square.rs -------------------------------------------------------------------------------- /chapter-code/wip/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/lib.rs -------------------------------------------------------------------------------- /chapter-code/wip/models/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/models/mod.rs -------------------------------------------------------------------------------- /chapter-code/wip/models/square.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/models/square.rs -------------------------------------------------------------------------------- /chapter-code/wip/models/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/models/traits.rs -------------------------------------------------------------------------------- /chapter-code/wip/shaders/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/shaders/mod.rs -------------------------------------------------------------------------------- /chapter-code/wip/shaders/movable_square/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/shaders/movable_square/fragment.glsl -------------------------------------------------------------------------------- /chapter-code/wip/shaders/movable_square/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/shaders/movable_square/mod.rs -------------------------------------------------------------------------------- /chapter-code/wip/shaders/movable_square/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/shaders/movable_square/vertex.glsl -------------------------------------------------------------------------------- /chapter-code/wip/shaders/static_triangle/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/shaders/static_triangle/fragment.glsl -------------------------------------------------------------------------------- /chapter-code/wip/shaders/static_triangle/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/shaders/static_triangle/mod.rs -------------------------------------------------------------------------------- /chapter-code/wip/shaders/static_triangle/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/shaders/static_triangle/vertex.glsl -------------------------------------------------------------------------------- /chapter-code/wip/vertex_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/vertex_data.rs -------------------------------------------------------------------------------- /chapter-code/wip/vulkano_objects/allocators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/vulkano_objects/allocators.rs -------------------------------------------------------------------------------- /chapter-code/wip/vulkano_objects/buffers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/vulkano_objects/buffers.rs -------------------------------------------------------------------------------- /chapter-code/wip/vulkano_objects/command_buffers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/vulkano_objects/command_buffers.rs -------------------------------------------------------------------------------- /chapter-code/wip/vulkano_objects/instance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/vulkano_objects/instance.rs -------------------------------------------------------------------------------- /chapter-code/wip/vulkano_objects/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/vulkano_objects/mod.rs -------------------------------------------------------------------------------- /chapter-code/wip/vulkano_objects/physical_device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/vulkano_objects/physical_device.rs -------------------------------------------------------------------------------- /chapter-code/wip/vulkano_objects/pipeline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/vulkano_objects/pipeline.rs -------------------------------------------------------------------------------- /chapter-code/wip/vulkano_objects/render_pass.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/vulkano_objects/render_pass.rs -------------------------------------------------------------------------------- /chapter-code/wip/vulkano_objects/swapchain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/chapter-code/wip/vulkano_objects/swapchain.rs -------------------------------------------------------------------------------- /src/01-introduction/01-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/01-introduction/01-introduction.md -------------------------------------------------------------------------------- /src/02-initialization/01-initialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/02-initialization/01-initialization.md -------------------------------------------------------------------------------- /src/02-initialization/02-device-creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/02-initialization/02-device-creation.md -------------------------------------------------------------------------------- /src/03-buffer-creation/01-buffer-creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/03-buffer-creation/01-buffer-creation.md -------------------------------------------------------------------------------- /src/03-buffer-creation/02-example-operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/03-buffer-creation/02-example-operation.md -------------------------------------------------------------------------------- /src/04-compute-pipeline/01-compute-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/04-compute-pipeline/01-compute-intro.md -------------------------------------------------------------------------------- /src/04-compute-pipeline/02-compute-pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/04-compute-pipeline/02-compute-pipeline.md -------------------------------------------------------------------------------- /src/04-compute-pipeline/03-descriptor-sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/04-compute-pipeline/03-descriptor-sets.md -------------------------------------------------------------------------------- /src/04-compute-pipeline/04-dispatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/04-compute-pipeline/04-dispatch.md -------------------------------------------------------------------------------- /src/04-compute-pipeline/guide-compute-pipeline-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/04-compute-pipeline/guide-compute-pipeline-1.svg -------------------------------------------------------------------------------- /src/04-compute-pipeline/guide-descriptor-sets-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/04-compute-pipeline/guide-descriptor-sets-1.svg -------------------------------------------------------------------------------- /src/05-images/01-image-creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/05-images/01-image-creation.md -------------------------------------------------------------------------------- /src/05-images/02-image-clear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/05-images/02-image-clear.md -------------------------------------------------------------------------------- /src/05-images/03-image-export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/05-images/03-image-export.md -------------------------------------------------------------------------------- /src/05-images/04-mandelbrot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/05-images/04-mandelbrot.md -------------------------------------------------------------------------------- /src/05-images/guide-image-creation-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/05-images/guide-image-creation-1.png -------------------------------------------------------------------------------- /src/05-images/guide-image-export-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/05-images/guide-image-export-1.png -------------------------------------------------------------------------------- /src/05-images/guide-mandelbrot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/05-images/guide-mandelbrot-1.png -------------------------------------------------------------------------------- /src/06-graphics-pipeline/01-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/06-graphics-pipeline/01-introduction.md -------------------------------------------------------------------------------- /src/06-graphics-pipeline/02-vertex-shader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/06-graphics-pipeline/02-vertex-shader.md -------------------------------------------------------------------------------- /src/06-graphics-pipeline/03-fragment-shader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/06-graphics-pipeline/03-fragment-shader.md -------------------------------------------------------------------------------- /src/06-graphics-pipeline/04-render-pass-framebuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/06-graphics-pipeline/04-render-pass-framebuffer.md -------------------------------------------------------------------------------- /src/06-graphics-pipeline/05-pipeline-creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/06-graphics-pipeline/05-pipeline-creation.md -------------------------------------------------------------------------------- /src/06-graphics-pipeline/guide-fragment-shader-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/06-graphics-pipeline/guide-fragment-shader-1.svg -------------------------------------------------------------------------------- /src/06-graphics-pipeline/guide-graphics-pipeline-creation-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/06-graphics-pipeline/guide-graphics-pipeline-creation-1.png -------------------------------------------------------------------------------- /src/06-graphics-pipeline/guide-vertex-input-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/06-graphics-pipeline/guide-vertex-input-1.svg -------------------------------------------------------------------------------- /src/06-graphics-pipeline/guide-vertex-input-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/06-graphics-pipeline/guide-vertex-input-2.svg -------------------------------------------------------------------------------- /src/07-windowing/01-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/07-windowing/01-introduction.md -------------------------------------------------------------------------------- /src/07-windowing/02-swapchain-creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/07-windowing/02-swapchain-creation.md -------------------------------------------------------------------------------- /src/07-windowing/03-other-initialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/07-windowing/03-other-initialization.md -------------------------------------------------------------------------------- /src/07-windowing/04-event-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/07-windowing/04-event-handling.md -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/about.md -------------------------------------------------------------------------------- /src/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/contributors.md -------------------------------------------------------------------------------- /src/wip/guide-buffer-creation-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/wip/guide-buffer-creation-1.svg -------------------------------------------------------------------------------- /src/wip/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/src/wip/memory.md -------------------------------------------------------------------------------- /theme/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/theme/favicon.png -------------------------------------------------------------------------------- /theme/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vulkano-rs/vulkano-book/HEAD/theme/highlight.js --------------------------------------------------------------------------------