aboutsummaryrefslogtreecommitdiff
path: root/menu.h
diff options
context:
space:
mode:
authorM Stoeckl <code@mstoeckl.com>2024-10-31 10:27:47 -0400
committeradnano <adnano@noreply.codeberg.org>2024-11-01 23:33:53 +0000
commit0947765fc9a4f6fc4287acfcd2efcaf4fef1ffb8 (patch)
treee123c7fe7ded1913957731c5a91d3d6eba4fd431 /menu.h
parent260eaba88ec8f54fe2bdbe391b18fcd2db70836f (diff)
downloadwmenu-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.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/menu.h b/menu.h
index 280cdd0..8dcd99c 100644
--- a/menu.h
+++ b/menu.h
@@ -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;