197: Rendy integration r=grovesNL a=kvark

Integrates with rendy-memory and rendy-descriptor.
~~Includes #195~~
Fixes #111 

Co-authored-by: Dzmitry Malyshau <kvarkus@gmail.com>
This commit is contained in:
bors[bot] 2019-05-31 11:30:33 +00:00
commit 9276cd51c0
9 changed files with 216 additions and 185 deletions

65
Cargo.lock generated
View File

@ -42,6 +42,11 @@ dependencies = [
"shared_library 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", "shared_library 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]]
name = "atom"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "autocfg" name = "autocfg"
version = "0.1.2" version = "0.1.2"
@ -134,6 +139,11 @@ dependencies = [
"objc 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "objc 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]]
name = "colorful"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "copyless" name = "copyless"
version = "0.1.2" version = "0.1.2"
@ -490,6 +500,14 @@ dependencies = [
"gl_generator 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "gl_generator 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]]
name = "hibitset"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"atom 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]] [[package]]
name = "iovec" name = "iovec"
version = "0.1.2" version = "0.1.2"
@ -959,6 +977,16 @@ name = "redox_syscall"
version = "0.1.54" version = "0.1.54"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "relevant"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"backtrace 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)",
"cfg-if 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]] [[package]]
name = "remove_dir_all" name = "remove_dir_all"
version = "0.5.1" version = "0.5.1"
@ -967,6 +995,35 @@ dependencies = [
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]]
name = "rendy-descriptor"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"derivative 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"gfx-hal 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"relevant 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
"smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "rendy-memory"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"colorful 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"derivative 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"gfx-hal 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"hibitset 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"relevant 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
"slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
"smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]] [[package]]
name = "rustc-demangle" name = "rustc-demangle"
version = "0.1.14" version = "0.1.14"
@ -1242,6 +1299,8 @@ dependencies = [
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"rendy-descriptor 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"rendy-memory 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)",
"vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
"winit 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)", "winit 0.19.1 (registry+https://github.com/rust-lang/crates.io-index)",
@ -1387,6 +1446,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
"checksum approx 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3" "checksum approx 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3"
"checksum arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "92c7fb76bc8826a8b33b4ee5bb07a247a81e76764ab4d55e8f73e3a4d8808c71" "checksum arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "92c7fb76bc8826a8b33b4ee5bb07a247a81e76764ab4d55e8f73e3a4d8808c71"
"checksum ash 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)" = "003d1fb2eb12eb06d4a03dbe02eea67a9fac910fa97932ab9e3a75b96a1ea5e5" "checksum ash 0.29.0 (registry+https://github.com/rust-lang/crates.io-index)" = "003d1fb2eb12eb06d4a03dbe02eea67a9fac910fa97932ab9e3a75b96a1ea5e5"
"checksum atom 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "3c86699c3f02778ec07158376991c8f783dd1f2f95c579ffaf0738dc984b2fe2"
"checksum autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799" "checksum autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799"
"checksum backtrace 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)" = "f92d5d536fa03dc3d93711d97bac1fae2eb59aba467ca4c6600c0119da614f51" "checksum backtrace 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)" = "f92d5d536fa03dc3d93711d97bac1fae2eb59aba467ca4c6600c0119da614f51"
"checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6" "checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6"
@ -1399,6 +1459,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
"checksum cgl 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "55e7ec0b74fe5897894cbc207092c577e87c52f8a59e8ca8d97ef37551f60a49" "checksum cgl 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "55e7ec0b74fe5897894cbc207092c577e87c52f8a59e8ca8d97ef37551f60a49"
"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
"checksum cocoa 0.18.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cf79daa4e11e5def06e55306aa3601b87de6b5149671529318da048f67cdd77b" "checksum cocoa 0.18.4 (registry+https://github.com/rust-lang/crates.io-index)" = "cf79daa4e11e5def06e55306aa3601b87de6b5149671529318da048f67cdd77b"
"checksum colorful 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0bca1619ff57dd7a56b58a8e25ef4199f123e78e503fe1653410350a1b98ae65"
"checksum copyless 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "59de7722d3b5c7b35dd519d617fe5116c9b879a0f145dc5431d78ab1f61d7c23" "checksum copyless 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "59de7722d3b5c7b35dd519d617fe5116c9b879a0f145dc5431d78ab1f61d7c23"
"checksum core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d" "checksum core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d"
"checksum core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b" "checksum core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b"
@ -1435,6 +1496,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
"checksum glutin_gles2_sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "89996c30857ae1b4de4b5189abf1ea822a20a9fe9e1c93e5e7b862ff0bdd5cdf" "checksum glutin_gles2_sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "89996c30857ae1b4de4b5189abf1ea822a20a9fe9e1c93e5e7b862ff0bdd5cdf"
"checksum glutin_glx_sys 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "1290a5ca5e46fcfa7f66f949cc9d9194b2cb6f2ed61892c8c2b82343631dba57" "checksum glutin_glx_sys 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "1290a5ca5e46fcfa7f66f949cc9d9194b2cb6f2ed61892c8c2b82343631dba57"
"checksum glutin_wgl_sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f801bbc91efc22dd1c4818a47814fc72bf74d024510451b119381579bfa39021" "checksum glutin_wgl_sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "f801bbc91efc22dd1c4818a47814fc72bf74d024510451b119381579bfa39021"
"checksum hibitset 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "6527bc88f32e0d3926c7572874b2bf17a19b36978aacd0aacf75f7d27a5992d0"
"checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08" "checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08"
"checksum ipc-channel 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "79d98ee7dd1d2e796d254807fd86ea7189d07571aeaa74007603e29a79d15217" "checksum ipc-channel 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "79d98ee7dd1d2e796d254807fd86ea7189d07571aeaa74007603e29a79d15217"
"checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
@ -1487,7 +1549,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
"checksum range-alloc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dd5927936723a9e8b715d37d7e4b390455087c4bdf25b9f702309460577b14f9" "checksum range-alloc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dd5927936723a9e8b715d37d7e4b390455087c4bdf25b9f702309460577b14f9"
"checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
"checksum redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)" = "12229c14a0f65c4f1cb046a3b52047cdd9da1f4b30f8a39c5063c8bae515e252" "checksum redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)" = "12229c14a0f65c4f1cb046a3b52047cdd9da1f4b30f8a39c5063c8bae515e252"
"checksum relevant 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bbc232e13d37f4547f5b9b42a5efc380cabe5dbc1807f8b893580640b2ab0308"
"checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5" "checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5"
"checksum rendy-descriptor 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d994004622af2fe3848fde527258dd6bee8cf089a51e2e83fe5f2b7aeb09f6c0"
"checksum rendy-memory 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fbdab806e4d349037b60ff6a25dad1260da58eb4b43ecac31350443278d5c002"
"checksum rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "ccc78bfd5acd7bf3e89cffcf899e5cb1a52d6fafa8dec2739ad70c9577a57288" "checksum rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "ccc78bfd5acd7bf3e89cffcf899e5cb1a52d6fafa8dec2739ad70c9577a57288"
"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
"checksum rusttype 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "25951e85bb2647960969f72c559392245a5bd07446a589390bf427dda31cdc4a" "checksum rusttype 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "25951e85bb2647960969f72c559392245a5bd07446a589390bf427dda31cdc4a"

View File

@ -1,6 +1,6 @@
/* Generated with cbindgen:0.8.6 */ /* Generated with cbindgen:0.8.7 */
#include <stdarg.h> #include <stdarg.h>
#include <stdbool.h> #include <stdbool.h>

View File

@ -1,6 +1,6 @@
#define WGPU_LOCAL #define WGPU_LOCAL
/* Generated with cbindgen:0.8.6 */ /* Generated with cbindgen:0.8.7 */
#include <stdarg.h> #include <stdarg.h>
#include <stdbool.h> #include <stdbool.h>

View File

@ -28,7 +28,6 @@ bitflags = "1.0"
copyless = "0.1" copyless = "0.1"
lazy_static = "1.1.0" lazy_static = "1.1.0"
log = "0.4" log = "0.4"
parking_lot = { version = "0.8" }
hal = { package = "gfx-hal", version = "0.2" } hal = { package = "gfx-hal", version = "0.2" }
gfx-backend-empty = { version = "0.2" } gfx-backend-empty = { version = "0.2" }
gfx-backend-vulkan = { version = "0.2", optional = true } gfx-backend-vulkan = { version = "0.2", optional = true }
@ -36,7 +35,9 @@ gfx-backend-dx11 = { version = "0.2", optional = true }
gfx-backend-dx12 = { version = "0.2", optional = true } gfx-backend-dx12 = { version = "0.2", optional = true }
gfx-backend-metal = { version = "0.2", optional = true } gfx-backend-metal = { version = "0.2", optional = true }
gfx-backend-gl = { version = "0.2", optional = true } gfx-backend-gl = { version = "0.2", optional = true }
#rendy-memory = { git = "https://github.com/rustgd/rendy", rev = "ce7dd7f", features = ["gfx-hal"] } parking_lot = { version = "0.8" }
rendy-memory = "0.2"
rendy-descriptor = "0.2"
serde = { version = "1.0", features = ["serde_derive"], optional = true } serde = { version = "1.0", features = ["serde_derive"], optional = true }
vec_map = "0.8" vec_map = "0.8"
winit = { version = "0.19", optional = true } winit = { version = "0.19", optional = true }

View File

@ -10,6 +10,7 @@ use crate::{
use arrayvec::ArrayVec; use arrayvec::ArrayVec;
use bitflags::bitflags; use bitflags::bitflags;
use rendy_descriptor::{DescriptorRanges, DescriptorSet};
pub const MAX_BIND_GROUPS: usize = 4; pub const MAX_BIND_GROUPS: usize = 4;
@ -52,6 +53,7 @@ pub struct BindGroupLayoutDescriptor {
pub struct BindGroupLayout<B: hal::Backend> { pub struct BindGroupLayout<B: hal::Backend> {
pub(crate) raw: B::DescriptorSetLayout, pub(crate) raw: B::DescriptorSetLayout,
pub(crate) bindings: Vec<BindGroupLayoutBinding>, pub(crate) bindings: Vec<BindGroupLayoutBinding>,
pub(crate) desc_ranges: DescriptorRanges,
pub(crate) dynamic_count: usize, pub(crate) dynamic_count: usize,
} }
@ -94,7 +96,7 @@ pub struct BindGroupDescriptor {
} }
pub struct BindGroup<B: hal::Backend> { pub struct BindGroup<B: hal::Backend> {
pub(crate) raw: B::DescriptorSet, pub(crate) raw: DescriptorSet<B>,
pub(crate) layout_id: BindGroupLayoutId, pub(crate) layout_id: BindGroupLayoutId,
pub(crate) life_guard: LifeGuard, pub(crate) life_guard: LifeGuard,
pub(crate) used: TrackerSet, pub(crate) used: TrackerSet,

View File

@ -91,7 +91,7 @@ pub extern "C" fn wgpu_compute_pass_set_bind_group(
{ {
let pipeline_layout_guard = HUB.pipeline_layouts.read(); let pipeline_layout_guard = HUB.pipeline_layouts.read();
let bind_groups = let bind_groups =
iter::once(&bind_group.raw).chain(follow_up.map(|bg_id| &bind_group_guard[bg_id].raw)); iter::once(bind_group.raw.raw()).chain(follow_up.map(|bg_id| bind_group_guard[bg_id].raw.raw()));
unsafe { unsafe {
pass.raw.bind_compute_descriptor_sets( pass.raw.bind_compute_descriptor_sets(
&pipeline_layout_guard[pipeline_layout_id].raw, &pipeline_layout_guard[pipeline_layout_id].raw,
@ -162,7 +162,7 @@ pub extern "C" fn wgpu_compute_pass_set_pipeline(
.enumerate() .enumerate()
{ {
if let LayoutChange::Match(bg_id) = entry.expect_layout(bgl_id) { if let LayoutChange::Match(bg_id) = entry.expect_layout(bgl_id) {
let desc_set = &bind_group_guard[bg_id].raw; let desc_set = bind_group_guard[bg_id].raw.raw();
unsafe { unsafe {
pass.raw.bind_compute_descriptor_sets( pass.raw.bind_compute_descriptor_sets(
&pipeline_layout.raw, &pipeline_layout.raw,

View File

@ -227,7 +227,7 @@ pub extern "C" fn wgpu_render_pass_set_bind_group(
{ {
let pipeline_layout_guard = HUB.pipeline_layouts.read(); let pipeline_layout_guard = HUB.pipeline_layouts.read();
let bind_groups = let bind_groups =
iter::once(&bind_group.raw).chain(follow_up.map(|bg_id| &bind_group_guard[bg_id].raw)); iter::once(bind_group.raw.raw()).chain(follow_up.map(|bg_id| bind_group_guard[bg_id].raw.raw()));
unsafe { unsafe {
pass.raw.bind_graphics_descriptor_sets( pass.raw.bind_graphics_descriptor_sets(
&&pipeline_layout_guard[pipeline_layout_id].raw, &&pipeline_layout_guard[pipeline_layout_id].raw,
@ -414,7 +414,7 @@ pub extern "C" fn wgpu_render_pass_set_pipeline(
.enumerate() .enumerate()
{ {
if let LayoutChange::Match(bg_id) = entry.expect_layout(bgl_id) { if let LayoutChange::Match(bg_id) = entry.expect_layout(bgl_id) {
let desc_set = &bind_group_guard[bg_id].raw; let desc_set = bind_group_guard[bg_id].raw.raw();
unsafe { unsafe {
pass.raw.bind_graphics_descriptor_sets( pass.raw.bind_graphics_descriptor_sets(
&pipeline_layout.raw, &pipeline_layout.raw,

View File

@ -44,17 +44,17 @@ use hal::{
backend::FastHashMap, backend::FastHashMap,
command::RawCommandBuffer, command::RawCommandBuffer,
queue::RawCommandQueue, queue::RawCommandQueue,
DescriptorPool as _,
Device as _, Device as _,
Surface as _, Surface as _,
}; };
use log::{info, trace}; use log::{info, trace};
//use rendy_memory::{allocator, Config, Heaps};
use parking_lot::Mutex; use parking_lot::Mutex;
use rendy_descriptor::{DescriptorAllocator, DescriptorRanges};
use rendy_memory::{Block, Heaps, MemoryBlock};
#[cfg(feature = "local")] #[cfg(feature = "local")]
use std::sync::atomic::AtomicBool; use std::sync::atomic::AtomicBool;
use std::{collections::hash_map::Entry, ffi, iter, ptr, slice, sync::atomic::Ordering}; use std::{collections::hash_map::Entry, ffi, iter, ptr, ops::Range, slice, sync::atomic::Ordering};
const CLEANUP_WAIT_MS: u64 = 5000; const CLEANUP_WAIT_MS: u64 = 5000;
pub const MAX_COLOR_TARGETS: usize = 4; pub const MAX_COLOR_TARGETS: usize = 4;
@ -111,8 +111,8 @@ enum ResourceId {
} }
enum NativeResource<B: hal::Backend> { enum NativeResource<B: hal::Backend> {
Buffer(B::Buffer, B::Memory), Buffer(B::Buffer, MemoryBlock<B>),
Image(B::Image, B::Memory), Image(B::Image, MemoryBlock<B>),
ImageView(B::ImageView), ImageView(B::ImageView),
Framebuffer(B::Framebuffer), Framebuffer(B::Framebuffer),
} }
@ -168,7 +168,12 @@ impl<B: hal::Backend> PendingResources<B> {
} }
/// Returns the last submission index that is done. /// Returns the last submission index that is done.
fn cleanup(&mut self, device: &B::Device, force_wait: bool) -> SubmissionIndex { fn cleanup(
&mut self,
device: &B::Device,
heaps_mutex: &Mutex<Heaps<B>>,
force_wait: bool,
) -> SubmissionIndex {
if force_wait { if force_wait {
let status = unsafe { let status = unsafe {
device.wait_for_fences( device.wait_for_fences(
@ -190,7 +195,7 @@ impl<B: hal::Backend> PendingResources<B> {
let last_done = if done_count != 0 { let last_done = if done_count != 0 {
self.active[done_count - 1].index self.active[done_count - 1].index
} else { } else {
0 return 0
}; };
for a in self.active.drain(.. done_count) { for a in self.active.drain(.. done_count) {
@ -202,15 +207,16 @@ impl<B: hal::Backend> PendingResources<B> {
} }
} }
let mut heaps = heaps_mutex.lock();
for resource in self.free.drain(..) { for resource in self.free.drain(..) {
match resource { match resource {
NativeResource::Buffer(raw, memory) => unsafe { NativeResource::Buffer(raw, memory) => unsafe {
device.destroy_buffer(raw); device.destroy_buffer(raw);
device.free_memory(memory); heaps.free(device, memory);
}, },
NativeResource::Image(raw, memory) => unsafe { NativeResource::Image(raw, memory) => unsafe {
device.destroy_image(raw); device.destroy_image(raw);
device.free_memory(memory); heaps.free(device, memory);
}, },
NativeResource::ImageView(raw) => unsafe { NativeResource::ImageView(raw) => unsafe {
device.destroy_image_view(raw); device.destroy_image_view(raw);
@ -342,7 +348,6 @@ impl PendingResources<back::Backend> {
fn handle_mapping( fn handle_mapping(
&mut self, &mut self,
raw: &<back::Backend as hal::Backend>::Device, raw: &<back::Backend as hal::Backend>::Device,
limits: &hal::Limits,
) -> Vec<BufferMapPendingCallback> { ) -> Vec<BufferMapPendingCallback> {
self.ready_to_map self.ready_to_map
.drain(..) .drain(..)
@ -352,10 +357,10 @@ impl PendingResources<back::Backend> {
let operation = buffer.pending_map_operation.take().unwrap(); let operation = buffer.pending_map_operation.take().unwrap();
let result = match operation { let result = match operation {
BufferMapOperation::Read(ref range, ..) => { BufferMapOperation::Read(ref range, ..) => {
map_buffer(raw, limits, buffer, range, HostMap::Read) map_buffer(raw, buffer, range.clone(), HostMap::Read)
} }
BufferMapOperation::Write(ref range, ..) => { BufferMapOperation::Write(ref range, ..) => {
map_buffer(raw, limits, buffer, range, HostMap::Write) map_buffer(raw, buffer, range.clone(), HostMap::Write)
} }
}; };
(operation, result) (operation, result)
@ -369,58 +374,47 @@ type BufferMapPendingCallback = (BufferMapOperation, BufferMapResult);
fn map_buffer( fn map_buffer(
raw: &<back::Backend as hal::Backend>::Device, raw: &<back::Backend as hal::Backend>::Device,
limits: &hal::Limits,
buffer: &mut resource::Buffer<back::Backend>, buffer: &mut resource::Buffer<back::Backend>,
original_range: &std::ops::Range<BufferAddress>, buffer_range: Range<BufferAddress>,
kind: HostMap, kind: HostMap,
) -> BufferMapResult { ) -> BufferMapResult {
// gfx-rs requires mapping and flushing/invalidation ranges to be done at `non_coherent_atom_size` let is_coherent = buffer.memory
// granularity for memory types that aren't coherent. We achieve that by flooring the start offset .properties()
// and ceiling the end offset to those atom sizes, using bitwise operations on an `atom_mask`.
let is_coherent = buffer
.memory_properties
.contains(hal::memory::Properties::COHERENT); .contains(hal::memory::Properties::COHERENT);
let atom_mask = if is_coherent { let (ptr, mapped_range) = {
0 let mapped = buffer.memory.map(raw, buffer_range)?;
} else { (mapped.ptr(), mapped.range())
limits.non_coherent_atom_size as u64 - 1
}; };
let atom_offset = original_range.start & atom_mask;
let range = (original_range.start & !atom_mask) .. ((original_range.end - 1) | atom_mask) + 1;
let pointer = unsafe { raw.map_memory(&buffer.memory, range.clone()) }?;
if !is_coherent { if !is_coherent {
match kind { match kind {
HostMap::Read => unsafe { HostMap::Read => unsafe {
raw.invalidate_mapped_memory_ranges(iter::once((&buffer.memory, range))) raw.invalidate_mapped_memory_ranges(
iter::once((buffer.memory.memory(), mapped_range)),
)
.unwrap(); .unwrap();
}, },
HostMap::Write => { HostMap::Write => {
buffer.mapped_write_ranges.push(range); buffer.mapped_write_ranges.push(mapped_range);
} }
} }
} }
Ok(unsafe { Ok(ptr.as_ptr())
// Since we map with a potentially smaller offset than the user requested,
// we adjust the returned pointer to compensate.
pointer.offset(atom_offset as isize)
})
} }
pub struct Device<B: hal::Backend> { pub struct Device<B: hal::Backend> {
pub(crate) raw: B::Device, pub(crate) raw: B::Device,
adapter_id: AdapterId, adapter_id: AdapterId,
limits: hal::Limits,
pub(crate) queue_group: hal::QueueGroup<B, hal::General>, pub(crate) queue_group: hal::QueueGroup<B, hal::General>,
//mem_allocator: Heaps<B::Memory>,
pub(crate) com_allocator: command::CommandAllocator<B>, pub(crate) com_allocator: command::CommandAllocator<B>,
mem_allocator: Mutex<Heaps<B>>,
desc_allocator: Mutex<DescriptorAllocator<B>>,
life_guard: LifeGuard, life_guard: LifeGuard,
pub(crate) trackers: Mutex<TrackerSet>, pub(crate) trackers: Mutex<TrackerSet>,
mem_props: hal::MemoryProperties,
limits: hal::Limits,
pub(crate) render_passes: Mutex<FastHashMap<RenderPassKey, B::RenderPass>>, pub(crate) render_passes: Mutex<FastHashMap<RenderPassKey, B::RenderPass>>,
pub(crate) framebuffers: Mutex<FastHashMap<FramebufferKey, B::Framebuffer>>, pub(crate) framebuffers: Mutex<FastHashMap<FramebufferKey, B::Framebuffer>>,
desc_pool: Mutex<B::DescriptorPool>,
pending: Mutex<PendingResources<B>>, pending: Mutex<PendingResources<B>>,
} }
@ -432,81 +426,48 @@ impl<B: hal::Backend> Device<B> {
mem_props: hal::MemoryProperties, mem_props: hal::MemoryProperties,
limits: hal::Limits, limits: hal::Limits,
) -> Self { ) -> Self {
// TODO: These values are just taken from rendy's test
// Need to set reasonable values per memory type instead
/*let arena = Some(allocator::ArenaConfig {
arena_size: 32 * 1024,
});
let dynamic = Some(allocator::DynamicConfig {
blocks_per_chunk: 64,
block_size_granularity: 256,
max_block_size: 32 * 1024,
});
let config = Config { arena, dynamic };
let mem_allocator = unsafe {
Heaps::new(
mem_props
.memory_types
.iter()
.map(|mt| (mt.properties.into(), mt.heap_index as u32, config)),
mem_props.memory_heaps.clone(),
)
};*/
//TODO: generic allocator for descriptors
let desc_pool = Mutex::new(
unsafe {
raw.create_descriptor_pool(
10000,
&[
hal::pso::DescriptorRangeDesc {
ty: hal::pso::DescriptorType::Sampler,
count: 100,
},
hal::pso::DescriptorRangeDesc {
ty: hal::pso::DescriptorType::SampledImage,
count: 1000,
},
hal::pso::DescriptorRangeDesc {
ty: hal::pso::DescriptorType::UniformBuffer,
count: 10000,
},
hal::pso::DescriptorRangeDesc {
ty: hal::pso::DescriptorType::UniformBufferDynamic,
count: 100,
},
hal::pso::DescriptorRangeDesc {
ty: hal::pso::DescriptorType::StorageBuffer,
count: 1000,
},
hal::pso::DescriptorRangeDesc {
ty: hal::pso::DescriptorType::StorageBufferDynamic,
count: 100,
},
],
hal::pso::DescriptorPoolCreateFlags::empty(),
)
}
.unwrap(),
);
// don't start submission index at zero // don't start submission index at zero
let life_guard = LifeGuard::new(); let life_guard = LifeGuard::new();
life_guard.submission_index.fetch_add(1, Ordering::Relaxed); life_guard.submission_index.fetch_add(1, Ordering::Relaxed);
let heaps = {
let types = mem_props.memory_types
.iter()
.map(|mt| {
use rendy_memory::{HeapsConfig, LinearConfig, DynamicConfig};
let config = HeapsConfig {
linear: if mt.properties.contains(hal::memory::Properties::CPU_VISIBLE) {
Some(LinearConfig {
linear_size: 0x10_00_00,
})
} else {
None
},
dynamic: Some(DynamicConfig {
block_size_granularity: 0x1_00,
max_chunk_size: 0x1_00_00_00,
min_device_allocation: 0x1_00_00,
}),
};
(mt.properties.into(), mt.heap_index as u32, config)
});
unsafe {
Heaps::new(types, mem_props.memory_heaps.iter().cloned())
}
};
Device { Device {
raw, raw,
adapter_id, adapter_id,
//mem_allocator, limits,
com_allocator: command::CommandAllocator::new(queue_group.family()), com_allocator: command::CommandAllocator::new(queue_group.family()),
mem_allocator: Mutex::new(heaps),
desc_allocator: Mutex::new(DescriptorAllocator::new()),
queue_group, queue_group,
life_guard, life_guard,
trackers: Mutex::new(TrackerSet::new()), trackers: Mutex::new(TrackerSet::new()),
mem_props,
limits,
render_passes: Mutex::new(FastHashMap::default()), render_passes: Mutex::new(FastHashMap::default()),
framebuffers: Mutex::new(FastHashMap::default()), framebuffers: Mutex::new(FastHashMap::default()),
desc_pool,
pending: Mutex::new(PendingResources { pending: Mutex::new(PendingResources {
mapped: Vec::new(), mapped: Vec::new(),
referenced: Vec::new(), referenced: Vec::new(),
@ -525,8 +486,8 @@ impl Device<back::Backend> {
pending.triage_referenced(&mut *trackers); pending.triage_referenced(&mut *trackers);
pending.triage_framebuffers(&mut *self.framebuffers.lock()); pending.triage_framebuffers(&mut *self.framebuffers.lock());
let last_done = pending.cleanup(&self.raw, force_wait); let last_done = pending.cleanup(&self.raw, &self.mem_allocator, force_wait);
let callbacks = pending.handle_mapping(&self.raw, &self.limits); let callbacks = pending.handle_mapping(&self.raw);
if last_done != 0 { if last_done != 0 {
self.com_allocator.maintain(last_done); self.com_allocator.maintain(last_done);
@ -564,37 +525,39 @@ pub fn device_create_buffer(
) -> resource::Buffer<back::Backend> { ) -> resource::Buffer<back::Backend> {
let device_guard = HUB.devices.read(); let device_guard = HUB.devices.read();
let device = &device_guard[device_id]; let device = &device_guard[device_id];
let (usage, memory_properties) = conv::map_buffer_usage(desc.usage); let (usage, _memory_properties) = conv::map_buffer_usage(desc.usage);
let rendy_usage = {
use resource::BufferUsage as Bu;
use rendy_memory::MemoryUsageValue as Muv;
if (Bu::MAP_WRITE | Bu::TRANSFER_SRC).contains(desc.usage) {
Muv::Upload
} else if (Bu::MAP_READ | Bu::TRANSFER_DST).contains(desc.usage) {
Muv::Download
} else if !desc.usage.contains(Bu::MAP_READ | Bu::MAP_WRITE) {
Muv::Data
} else {
Muv::Dynamic
}
};
let mut buffer = unsafe { device.raw.create_buffer(desc.size, usage).unwrap() }; let mut buffer = unsafe { device.raw.create_buffer(desc.size, usage).unwrap() };
let requirements = unsafe { device.raw.get_buffer_requirements(&buffer) }; let requirements = unsafe { device.raw.get_buffer_requirements(&buffer) };
let device_type = device let memory = device.mem_allocator
.mem_props .lock()
.memory_types .allocate(
.iter() &device.raw,
.enumerate() requirements.type_mask as u32,
.position(|(id, memory_type)| { rendy_usage,
requirements.type_mask & (1 << id) != 0 requirements.size,
&& memory_type.properties.contains(memory_properties) requirements.alignment,
}) )
.unwrap() .unwrap();
.into();
// TODO: allocate with rendy
// if the memory is mapped but not coherent, round up to the atom size
let mut mem_size = requirements.size;
if memory_properties.contains(hal::memory::Properties::CPU_VISIBLE)
&& !memory_properties.contains(hal::memory::Properties::COHERENT)
{
let mask = device.limits.non_coherent_atom_size as u64 - 1;
mem_size = ((mem_size - 1) | mask) + 1;
}
let memory = unsafe { device.raw.allocate_memory(device_type, mem_size).unwrap() };
unsafe { unsafe {
device device.raw
.raw .bind_buffer_memory(memory.memory(), memory.range().start, &mut buffer)
.bind_buffer_memory(&memory, 0, &mut buffer)
.unwrap() .unwrap()
}; };
@ -604,7 +567,6 @@ pub fn device_create_buffer(
value: device_id, value: device_id,
ref_count: device.life_guard.ref_count.clone(), ref_count: device.life_guard.ref_count.clone(),
}, },
memory_properties,
memory, memory,
size: desc.size, size: desc.size,
mapped_write_ranges: Vec::new(), mapped_write_ranges: Vec::new(),
@ -654,13 +616,11 @@ pub extern "C" fn wgpu_device_create_buffer_mapped(
{ {
let device_guard = HUB.devices.read(); let device_guard = HUB.devices.read();
let device = &device_guard[device_id]; let device = &device_guard[device_id];
let range = 0 .. desc.size;
match map_buffer( match map_buffer(
&device.raw, &device.raw,
&device.limits,
&mut buffer, &mut buffer,
&range, 0 .. desc.size,
HostMap::Write, HostMap::Write,
) { ) {
Ok(ptr) => unsafe { Ok(ptr) => unsafe {
@ -715,31 +675,21 @@ pub fn device_create_texture(
} }
.unwrap(); .unwrap();
let requirements = unsafe { device.raw.get_image_requirements(&image) }; let requirements = unsafe { device.raw.get_image_requirements(&image) };
let device_type = device
.mem_props let memory = device.mem_allocator
.memory_types .lock()
.iter() .allocate(
.enumerate() &device.raw,
.position(|(id, memory_type)| { requirements.type_mask as u32,
// TODO rendy_memory::Data,
requirements.type_mask & (1 << id) != 0 requirements.size,
&& memory_type requirements.alignment,
.properties )
.contains(hal::memory::Properties::DEVICE_LOCAL) .unwrap();
})
.unwrap()
.into();
// TODO: allocate with rendy
let memory = unsafe {
device
.raw
.allocate_memory(device_type, requirements.size)
.unwrap()
};
unsafe { unsafe {
device device.raw
.raw .bind_image_memory(memory.memory(), memory.range().start, &mut image)
.bind_image_memory(&memory, 0, &mut image)
.unwrap() .unwrap()
}; };
@ -953,27 +903,28 @@ pub fn device_create_bind_group_layout(
) -> binding_model::BindGroupLayout<back::Backend> { ) -> binding_model::BindGroupLayout<back::Backend> {
let bindings = unsafe { slice::from_raw_parts(desc.bindings, desc.bindings_length) }; let bindings = unsafe { slice::from_raw_parts(desc.bindings, desc.bindings_length) };
let raw_bindings = bindings
.iter()
.map(|binding| hal::pso::DescriptorSetLayoutBinding {
binding: binding.binding,
ty: conv::map_binding_type(binding.ty),
count: 1, //TODO: consolidate
stage_flags: conv::map_shader_stage_flags(binding.visibility),
immutable_samplers: false, // TODO
})
.collect::<Vec<_>>(); //TODO: avoid heap allocation
let raw = unsafe { let raw = unsafe {
HUB.devices.read()[device_id] HUB.devices.read()[device_id]
.raw .raw
.create_descriptor_set_layout( .create_descriptor_set_layout(&raw_bindings, &[])
bindings.iter().map(|binding| {
hal::pso::DescriptorSetLayoutBinding {
binding: binding.binding,
ty: conv::map_binding_type(binding.ty),
count: 1, //TODO: consolidate
stage_flags: conv::map_shader_stage_flags(binding.visibility),
immutable_samplers: false, // TODO
}
}),
&[],
)
.unwrap() .unwrap()
}; };
binding_model::BindGroupLayout { binding_model::BindGroupLayout {
raw, raw,
bindings: bindings.to_vec(), bindings: bindings.to_vec(),
desc_ranges: DescriptorRanges::from_bindings(&raw_bindings),
dynamic_count: bindings dynamic_count: bindings
.iter() .iter()
.filter(|b| match b.ty { .filter(|b| match b.ty {
@ -1042,8 +993,20 @@ pub fn device_create_bind_group(
let bindings = unsafe { slice::from_raw_parts(desc.bindings, desc.bindings_length as usize) }; let bindings = unsafe { slice::from_raw_parts(desc.bindings, desc.bindings_length as usize) };
assert_eq!(bindings.len(), bind_group_layout.bindings.len()); assert_eq!(bindings.len(), bind_group_layout.bindings.len());
let mut desc_pool = device.desc_pool.lock(); let desc_set = unsafe {
let desc_set = unsafe { desc_pool.allocate_set(&bind_group_layout.raw).unwrap() }; let mut desc_sets = ArrayVec::<[_; 1]>::new();
device.desc_allocator
.lock()
.allocate(
&device.raw,
&bind_group_layout.raw,
bind_group_layout.desc_ranges,
1,
&mut desc_sets,
)
.unwrap();
desc_sets.pop().unwrap()
};
let buffer_guard = HUB.buffers.read(); let buffer_guard = HUB.buffers.read();
let sampler_guard = HUB.samplers.read(); let sampler_guard = HUB.samplers.read();
@ -1116,7 +1079,7 @@ pub fn device_create_bind_group(
} }
}; };
writes.alloc().init(hal::pso::DescriptorSetWrite { writes.alloc().init(hal::pso::DescriptorSetWrite {
set: &desc_set, set: desc_set.raw(),
binding: b.binding, binding: b.binding,
array_offset: 0, //TODO array_offset: 0, //TODO
descriptors: iter::once(descriptor), descriptors: iter::once(descriptor),
@ -1964,12 +1927,12 @@ pub extern "C" fn wgpu_buffer_unmap(buffer_id: BufferId) {
buffer buffer
.mapped_write_ranges .mapped_write_ranges
.iter() .iter()
.map(|r| (&buffer.memory, r.clone())), .map(|r| (buffer.memory.memory(), r.clone())),
) )
.unwrap() .unwrap()
}; // TODO };
buffer.mapped_write_ranges.clear(); buffer.mapped_write_ranges.clear();
} }
unsafe { device_raw.unmap_memory(&buffer.memory) }; buffer.memory.unmap(device_raw);
} }

View File

@ -14,6 +14,7 @@ use crate::{
use bitflags::bitflags; use bitflags::bitflags;
use hal; use hal;
use parking_lot::Mutex; use parking_lot::Mutex;
use rendy_memory::MemoryBlock;
use std::borrow::Borrow; use std::borrow::Borrow;
@ -60,8 +61,7 @@ unsafe impl Sync for BufferMapOperation {}
pub struct Buffer<B: hal::Backend> { pub struct Buffer<B: hal::Backend> {
pub(crate) raw: B::Buffer, pub(crate) raw: B::Buffer,
pub(crate) device_id: Stored<DeviceId>, pub(crate) device_id: Stored<DeviceId>,
pub(crate) memory_properties: hal::memory::Properties, pub(crate) memory: MemoryBlock<B>,
pub(crate) memory: B::Memory,
pub(crate) size: BufferAddress, pub(crate) size: BufferAddress,
pub(crate) mapped_write_ranges: Vec<std::ops::Range<u64>>, pub(crate) mapped_write_ranges: Vec<std::ops::Range<u64>>,
pub(crate) pending_map_operation: Option<BufferMapOperation>, pub(crate) pending_map_operation: Option<BufferMapOperation>,
@ -179,7 +179,7 @@ pub struct TextureDescriptor {
pub(crate) enum TexturePlacement<B: hal::Backend> { pub(crate) enum TexturePlacement<B: hal::Backend> {
#[cfg_attr(feature = "remote", allow(unused))] #[cfg_attr(feature = "remote", allow(unused))]
SwapChain(SwapChainLink<Mutex<SwapImageEpoch>>), SwapChain(SwapChainLink<Mutex<SwapImageEpoch>>),
Memory(B::Memory), Memory(MemoryBlock<B>),
Void, Void,
} }