@@ -490,9 +490,10 @@ static void render_titlebar(struct sway_output *output,
490
490
int ob_marks_x = 0 ; // output-buffer-local
491
491
int ob_marks_width = 0 ; // output-buffer-local
492
492
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
+ };
496
497
ob_marks_width = texture_box .width ;
497
498
498
499
// The marks texture might be shorter than the config->font_height, in
@@ -543,9 +544,10 @@ static void render_titlebar(struct sway_output *output,
543
544
int ob_title_x = 0 ; // output-buffer-local
544
545
int ob_title_width = 0 ; // output-buffer-local
545
546
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
+ };
549
551
550
552
// The effective output may be NULL when con is not on any output.
551
553
// This can happen because we render all children of containers,
0 commit comments