Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/gui.zig
Original file line number Diff line number Diff line change
Expand Up @@ -1393,9 +1393,9 @@ extern fn zguiGetFont() Font;
/// `pub fn getFontSize() f32`
pub const getFontSize = zguiGetFontSize;
extern fn zguiGetFontSize() f32;
/// `void pushFont(font: Font, font_size_base_unscaled: f32) void`
/// `void pushFont(font: ?Font, font_size_base_unscaled: f32) void`
pub const pushFont = zguiPushFont;
extern fn zguiPushFont(font: Font, font_size_base_unscaled: f32) void;
extern fn zguiPushFont(font: ?Font, font_size_base_unscaled: f32) void;
/// `void popFont() void`
pub const popFont = zguiPopFont;
extern fn zguiPopFont() void;
Expand Down
Loading