remove unused outputs list in output-layout.c

This commit is contained in:
Tony Crisci 2017-08-30 13:50:13 -04:00
parent d84deb0742
commit 35eee80f9b
1 changed files with 0 additions and 3 deletions

View File

@ -33,7 +33,6 @@ struct sample_state {
float x_offs, y_offs;
float x_vel, y_vel;
struct wlr_output *main_output;
struct wl_list outputs;
};
static void handle_output_frame(struct output_state *output,
@ -130,7 +129,6 @@ static void handle_output_frame(struct output_state *output,
static void handle_output_add(struct output_state *ostate) {
struct sample_state *sample = ostate->compositor->data;
wl_list_insert(&sample->outputs, &ostate->link);
struct output_config *o_config =
example_config_get_output(sample->config, ostate->output);
@ -192,7 +190,6 @@ int main(int argc, char *argv[]) {
state.y_vel = 500;
state.layout = wlr_output_layout_init();
wl_list_init(&state.outputs);
state.config = parse_args(argc, argv);
struct compositor_state compositor = { 0 };