Added GetFontTexUvWhitePixel() helper.

This commit is contained in:
ocornut
2016-03-21 22:30:32 +01:00
parent a274a09955
commit 37d50dccf9
2 changed files with 6 additions and 0 deletions

View File

@ -4838,6 +4838,11 @@ float ImGui::GetFontSize()
return GImGui->FontSize;
}
ImVec2 ImGui::GetFontTexUvWhitePixel()
{
return GImGui->FontTexUvWhitePixel;
}
void ImGui::SetWindowFontScale(float scale)
{
ImGuiState& g = *GImGui;