mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
6 lines
338 B
C++
6 lines
338 B
C++
|
|
#include "imgui_ProggyDotted.h"
|
||
|
|
#include "ProggyDotted.inc"
|
||
|
|
ImFont* ImGui::AddFontProggyDotted(ImGuiIO& io, float size_pixels, const ImFontConfig* font_cfg, const ImWchar* glyph_ranges) {
|
||
|
|
return io.Fonts->AddFontFromMemoryCompressedTTF(ProggyDotted_compressed_data, ProggyDotted_compressed_size, size_pixels, font_cfg, glyph_ranges);
|
||
|
|
}
|