ebkalderon / renderdoc-rs

RenderDoc application bindings for Rust
Apache License 2.0
45 stars 6 forks source link

Fix loading of renderdoc library #140

Closed ebkalderon closed 1 year ago

ebkalderon commented 1 year ago

Fixed

The upstream documentation states that the RenderDoc library must only be loaded with libloading if the module is already present and gracefully handle its absence otherwise. This means using the above loading strategies on Unix and Windows instead of libloading::Library::new().

Closes #128.