feat(ui): Improve text rendering clarity with 3x font oversampling

This commit is contained in:
2026-03-09 00:13:57 -04:00
parent fde0f29e72
commit 5446a2407c
6 changed files with 277 additions and 40 deletions

View File

@@ -0,0 +1,12 @@
from imgui_bundle import imgui, hello_imgui
def test_font_config():
config = imgui.ImFontConfig()
config.oversample_h = 3
config.oversample_v = 3
print(f"Oversample H: {config.oversample_h}")
print(f"Oversample V: {config.oversample_v}")
if __name__ == "__main__":
test_font_config()