Some documentation fixes, added test for ImVec2 -> ImRange conversion

This commit is contained in:
4bb4 2021-04-19 12:00:25 +02:00
parent f2a4c6a3d8
commit 465e81d7f9
3 changed files with 8 additions and 2 deletions

View file

@ -20,6 +20,7 @@ pub struct Context {
// This mutex is used to guard any accesses to the context
static CTX_MUTEX: ReentrantMutex<()> = parking_lot::const_reentrant_mutex(());
/// Check if there is no current context defined by calling into the C++ API
fn no_current_context() -> bool {
let ctx = unsafe { sys::ImPlot_GetCurrentContext() };
ctx.is_null()

View file

@ -181,7 +181,7 @@ impl Plot {
}
/// Sets the plot size, given as [size_x, size_y]. Units are the same as
/// what imgui uses. TODO(4b4) ... which is? I'm not sure it's pixels
/// what imgui uses. TODO(4bb4) ... which is? I'm not sure it's pixels
#[inline]
pub fn size(mut self, size: [f32; 2]) -> Self {
self.size = size;