Skip to content

Commit 12e223e

Browse files
junglerobbaemersion
authored andcommitted
remove usage of wlr_texture_get_size
update for wlroots 6369f7093178f0d66414eb67c312a403bfbb84a4
1 parent 5a73dc1 commit 12e223e

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

sway/desktop/render.c

+8-6
Original file line numberDiff line numberDiff line change
@@ -490,9 +490,10 @@ static void render_titlebar(struct sway_output *output,
490490
int ob_marks_x = 0; // output-buffer-local
491491
int ob_marks_width = 0; // output-buffer-local
492492
if (config->show_marks && marks_texture) {
493-
struct wlr_box texture_box;
494-
wlr_texture_get_size(marks_texture,
495-
&texture_box.width, &texture_box.height);
493+
struct wlr_box texture_box = {
494+
.width = marks_texture->width,
495+
.height = marks_texture->height,
496+
};
496497
ob_marks_width = texture_box.width;
497498

498499
// The marks texture might be shorter than the config->font_height, in
@@ -543,9 +544,10 @@ static void render_titlebar(struct sway_output *output,
543544
int ob_title_x = 0; // output-buffer-local
544545
int ob_title_width = 0; // output-buffer-local
545546
if (title_texture) {
546-
struct wlr_box texture_box;
547-
wlr_texture_get_size(title_texture,
548-
&texture_box.width, &texture_box.height);
547+
struct wlr_box texture_box = {
548+
.width = title_texture->width,
549+
.height = title_texture->height,
550+
};
549551

550552
// The effective output may be NULL when con is not on any output.
551553
// This can happen because we render all children of containers,

0 commit comments

Comments
 (0)