mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-11 13:38:35 +00:00
Re-export crates from renderers
This commit is contained in:
parent
930d44e92b
commit
bbf9c57cdc
@ -8,6 +8,8 @@
|
||||
- Redesigned progress bar API
|
||||
- Redesigned color editor/picker API
|
||||
- Renderer errors implement std::error::Error
|
||||
- Glium renderer re-exports imgui and glium
|
||||
- Gfx renderer re-exports imgui and gfx
|
||||
|
||||
### Removed
|
||||
|
||||
|
||||
@ -1,3 +1,6 @@
|
||||
pub extern crate gfx;
|
||||
pub extern crate imgui;
|
||||
|
||||
use gfx::format::BlendFormat;
|
||||
use gfx::handle::{Buffer, RenderTargetView};
|
||||
use gfx::memory::Bind;
|
||||
|
||||
@ -1,3 +1,6 @@
|
||||
pub extern crate glium;
|
||||
pub extern crate imgui;
|
||||
|
||||
use glium::backend::{Context, Facade};
|
||||
use glium::index::{self, PrimitiveType};
|
||||
use glium::program::ProgramChooserCreationError;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user