diff --git a/imgui-glow-renderer/src/lib.rs b/imgui-glow-renderer/src/lib.rs index 9ee3fd8..1f3f3cb 100644 --- a/imgui-glow-renderer/src/lib.rs +++ b/imgui-glow-renderer/src/lib.rs @@ -50,6 +50,9 @@ use std::{borrow::Cow, error::Error, fmt::Display, mem::size_of}; use imgui::{internal::RawWrapper, DrawCmd, DrawData, DrawVert}; use crate::versions::{GlVersion, GlslVersion}; + +// Re-export glow to make it easier for users to use the correct version. +pub use glow; use glow::{Context, HasContext}; pub mod versions; diff --git a/imgui-winit-support/src/lib.rs b/imgui-winit-support/src/lib.rs index a8b012d..a907fb9 100644 --- a/imgui-winit-support/src/lib.rs +++ b/imgui-winit-support/src/lib.rs @@ -76,6 +76,9 @@ use imgui::{self, BackendFlags, ConfigFlags, Context, Io, Key, Ui}; use std::cell::Cell; use std::cmp::Ordering; + +// Re-export winit to make it easier for users to use the correct version. +pub use winit; use winit::dpi::{LogicalPosition, LogicalSize}; use winit::{