aboutsummaryrefslogtreecommitdiff
path: root/render.c
Commit message (Collapse)AuthorAgeFilesLines
* Render menu after surface enter eventadnano2025-03-011-0/+2
| | | | | This fixes an issue where the first visible frame is blurry on fractional scale displays.
* Simplify render_menuM Stoeckl2024-11-081-25/+6
|
* Only call render_menu once per frameM Stoeckl2024-11-011-2/+7
| | | | | An actual surface is not needed to estimate font sizes; a 1x1 image will do, as long as the cairo context has the same options.
* Optimize menu sortingM Stoeckl2024-10-311-1/+2
| | | | | | | Sorting and deduplicating elements after all items have been registered improves the time complexity of constructing the item list from O(n^2) to O(n log n). On a system with about 4000 menu items, this reduces startup time from about 0.21 seconds to 0.13 seconds.
* Revert "Remove wmenu -P flag"adnano2024-05-041-2/+16
| | | | This reverts commit c05ab7520b452ee3b8bd974a18511dc370cbeabe.
* Remove wmenu -P flagadnano2024-05-041-16/+2
| | | | | This flag causes some issues with wmenu-run. It will be revisited in the next release.
* Fix destruction of pool buffersadnano2024-05-021-6/+8
|
* Separate menu state from Wayland stateadnano2024-05-021-6/+10
|
* port dmenu password patchsewn2024-03-171-2/+19
|
* Free memory associated with the menu on exitadnano2024-03-021-6/+7
|
* Move menu and rendering logic into separate filesadnano2024-02-271-0/+199