Home
last modified time | relevance | path

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

/dports/games/retroarch/RetroArch-1.9.7/menu/drivers/ozone/
H A Dozone_entries.c280 if (new_scroll + ozone->entries_height < bottom_boundary) in ozone_update_scroll()
281 …new_scroll = bottom_boundary - ozone->entries_height - ozone->dimensions.entry_padding_vertical * … in ozone_update_scroll()
347 ozone->entries_height = 0; in ozone_compute_entries_position()
419 node->position_y = ozone->entries_height; in ozone_compute_entries_position()
421 ozone->entries_height += node->height; in ozone_compute_entries_position()
H A Dozone_sidebar.c146 float entries_height = ozone_get_sidebar_height(ozone); in ozone_sidebar_get_scroll_y() local
151 if (scroll_y + entries_height < bottom_boundary) in ozone_sidebar_get_scroll_y()
152 scroll_y = bottom_boundary - entries_height - ozone->dimensions.sidebar_padding_vertical; in ozone_sidebar_get_scroll_y()
H A Dozone.h211 unsigned entries_height; member
H A Dozone.c1949 if (ozone->animations.scroll_y + ozone->entries_height < entry_bottom_boundary) in ozone_render()
1950 ozone->animations.scroll_y = entry_bottom_boundary - ozone->entries_height; in ozone_render()
/dports/games/xonotic/Xonotic/source/qcsrc/client/hud/panel/
H A Dquickmenu.qc511 float first_entry_pos, entries_height;
515 entries_height = panel_size.y - ((QUICKMENU_MAXLINES - QuickMenu_Page_Entries) * fontsize.y);
517 …_pos && mousepos.x <= panel_pos.x + panel_size.x && mousepos.y <= first_entry_pos + entries_height)