diff options
author | M Stoeckl <code@mstoeckl.com> | 2024-10-31 10:27:47 -0400 |
---|---|---|
committer | adnano <adnano@noreply.codeberg.org> | 2024-11-01 23:33:53 +0000 |
commit | 0947765fc9a4f6fc4287acfcd2efcaf4fef1ffb8 (patch) | |
tree | e123c7fe7ded1913957731c5a91d3d6eba4fd431 /menu.h | |
parent | 260eaba88ec8f54fe2bdbe391b18fcd2db70836f (diff) | |
download | wmenu-0947765fc9a4f6fc4287acfcd2efcaf4fef1ffb8.tar.gz |
Only call render_menu once per frame
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.
Diffstat (limited to 'menu.h')
-rw-r--r-- | menu.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,6 +1,7 @@ #ifndef WMENU_MENU_H #define WMENU_MENU_H +#include <cairo/cairo.h> #include <stdbool.h> #include <sys/types.h> #include <xkbcommon/xkbcommon.h> @@ -51,6 +52,10 @@ struct menu { struct wl_context *context; + // 1x1 surface used estimate text sizes with pango + cairo_surface_t *test_surface; + cairo_t *test_cairo; + int width; int height; int line_height; |