You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
50 lines
1.5 KiB
#define _POSIX_C_SOURCE 200809L
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
#include <wayland-server.h>
|
|
#include <wlr/types/wlr_output.h>
|
|
#include <wlr/render.h>
|
|
#include "log.h"
|
|
#include "sway/container.h"
|
|
#include "sway/output.h"
|
|
#include "sway/server.h"
|
|
|
|
static void output_frame_notify(struct wl_listener *listener, void *data) {
|
|
struct sway_output *soutput = wl_container_of(
|
|
listener, soutput, frame);
|
|
struct wlr_output *wlr_output = data;
|
|
struct sway_server *server = soutput->server;
|
|
|
|
struct timespec now;
|
|
clock_gettime(CLOCK_MONOTONIC, &now);
|
|
|
|
wlr_output_make_current(wlr_output);
|
|
wlr_renderer_begin(server->renderer, wlr_output);
|
|
|
|
wlr_renderer_end(server->renderer);
|
|
wlr_output_swap_buffers(wlr_output);
|
|
|
|
soutput->last_frame = now;
|
|
}
|
|
|
|
void output_add_notify(struct wl_listener *listener, void *data) {
|
|
struct sway_server *server = wl_container_of(listener, server, output_add);
|
|
struct wlr_output *wlr_output = data;
|
|
sway_log(L_DEBUG, "New output %p: %s", wlr_output, wlr_output->name);
|
|
|
|
struct sway_output *output = calloc(1, sizeof(struct sway_output));
|
|
output->wlr_output = wlr_output;
|
|
output->server = server;
|
|
output->swayc = new_output(output);
|
|
|
|
output->frame.notify = output_frame_notify;
|
|
wl_signal_add(&wlr_output->events.frame, &output->frame);
|
|
}
|
|
|
|
void output_remove_notify(struct wl_listener *listener, void *data) {
|
|
struct sway_server *server = wl_container_of(listener, server, output_remove);
|
|
struct wlr_output *wlr_output = data;
|
|
sway_log(L_DEBUG, "Output %p %s removed", wlr_output, wlr_output->name);
|
|
// TODO
|
|
}
|