From 0c7137054652b556619b688707faa1150c230abc Mon Sep 17 00:00:00 2001 From: Malik Olivier Boussejra Date: Sun, 29 Apr 2018 18:47:54 +0900 Subject: [PATCH] imgui-sys: Add raw binding to GetFrameHeight --- imgui-sys/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/imgui-sys/src/lib.rs b/imgui-sys/src/lib.rs index 036f847..4a60651 100644 --- a/imgui-sys/src/lib.rs +++ b/imgui-sys/src/lib.rs @@ -1002,6 +1002,7 @@ extern "C" { pub fn igAlignTextToFramePadding(); pub fn igGetTextLineHeight() -> c_float; pub fn igGetTextLineHeightWithSpacing() -> c_float; + pub fn igGetFrameHeight() -> c_float; pub fn igGetFrameHeightWithSpacing() -> c_float; }