Re-export crates from renderers

This commit is contained in:
Joonas Javanainen 2019-07-12 20:32:22 +03:00
parent 930d44e92b
commit bbf9c57cdc
No known key found for this signature in database
GPG Key ID: D39CCA5CB19B9179
3 changed files with 8 additions and 0 deletions

View File

@ -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

View File

@ -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;

View File

@ -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;