Home
last modified time | relevance | path

Searched refs:screen_width (Results 1 – 5 of 5) sorted by relevance

/Zephyr-latest/include/zephyr/input/
Dinput_touch.h38 uint32_t screen_width; member
52 .screen_width = DT_PROP(node_id, screen_width), \
/Zephyr-latest/scripts/kconfig/
Dmenuconfig.py1040 screen_height, screen_width = _stdscr.getmaxyx()
1042 _path_win.resize(1, screen_width)
1043 _top_sep_win.resize(1, screen_width)
1044 _bot_sep_win.resize(1, screen_width)
1052 _menu_win.resize(menu_win_height, screen_width)
1053 _help_win.resize(help_win_height, screen_width)
1064 _menu_win.resize(1, screen_width)
1065 _help_win.resize(1, screen_width)
1770 screen_height, screen_width = _stdscr.getmaxyx()
1780 win_width = min(win_width, screen_width)
[all …]
Dguiconfig.py1275 screen_width = _root.winfo_screenwidth()
1282 if x + dialog_width > screen_width:
1283 x = screen_width - dialog_width
/Zephyr-latest/drivers/input/
Dinput_touch.c15 const uint32_t reported_x = cfg->inverted_x ? cfg->screen_width - x : x; in input_touchscreen_report_pos()
Dinput_stmpe811.c341 if (common->screen_width > 0 && common->screen_height > 0) { in stmpe811_report_touch()
342 x = (((int)data->touch_x - config->raw_x_min) * common->screen_width) / in stmpe811_report_touch()
347 x = CLAMP(x, 0, common->screen_width); in stmpe811_report_touch()