1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-19 14:02:01 +03:00
mobile-nixos/boot/lib/lvgui/lvgl/introspection.rb

12 lines
271 B
Ruby
Raw Normal View History

module LVGL::Introspection
def self.debug?()
LVGL::FFI.lv_introspection_is_debug != 0
end
def self.simulator?()
LVGL::FFI.lv_introspection_is_simulator != 0
end
def self.use_assert_style?()
LVGL::FFI.lv_introspection_use_assert_style != 0
end
end