mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
6 lines
388 B
C++
6 lines
388 B
C++
|
|
#include "imgui_RobotoCondensedRegular.h"
|
||
|
|
#include "RobotoCondensedRegular.inc"
|
||
|
|
ImFont* ImGui::AddFontRobotoCondensedRegular(ImGuiIO& io, float size_pixels, const ImFontConfig* font_cfg, const ImWchar* glyph_ranges) {
|
||
|
|
return io.Fonts->AddFontFromMemoryCompressedTTF(RobotoCondensedRegular_compressed_data, RobotoCondensedRegular_compressed_size, size_pixels, font_cfg, glyph_ranges);
|
||
|
|
}
|