ebkalderon / renderdoc-rs

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

Prelude is missing re-export for RenderDocV120 #20

Closed ebkalderon closed 5 years ago

ebkalderon commented 5 years ago

The prelude module is meant to re-export the ApiVersion trait and all RenderDocV### traits such that they can be glob-imported into the global scope for developer convenience. In version 0.4, support was added for version 1.2.0 of the Renderdoc API. Unfortunately, it seems that the corresponding re-export for the RenderDocV120 trait is missing from the prelude.

Fixing this should be as easy as adding RenderDocV120 to the imports.