mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-05 05:05:57 +01:00
scene-output-layout: assert lo->output == so->output
This commit is contained in:
parent
e1e911d425
commit
b06c2f3d1f
1 changed files with 3 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
#include <wlr/types/wlr_output_layout.h>
|
||||
#include <wlr/types/wlr_scene.h>
|
||||
|
@ -70,6 +71,8 @@ static void scene_output_layout_handle_layout_change(
|
|||
|
||||
void wlr_scene_output_layout_add_output(struct wlr_scene_output_layout *sol,
|
||||
struct wlr_output_layout_output *lo, struct wlr_scene_output *so) {
|
||||
assert(lo->output == so->output);
|
||||
|
||||
struct wlr_scene_output_layout_output *solo = calloc(1, sizeof(*solo));
|
||||
if (solo == NULL) {
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue