rootston: do not attempt to render disabled outputs

This commit is contained in:
emersion 2018-01-07 00:30:55 +01:00
parent 53ba9b4eec
commit 77fc0505e6
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
1 changed files with 4 additions and 0 deletions

View File

@ -211,6 +211,10 @@ static void output_frame_notify(struct wl_listener *listener, void *data) {
struct roots_desktop *desktop = output->desktop;
struct roots_server *server = desktop->server;
if (!wlr_output->enabled) {
return;
}
struct timespec now;
clock_gettime(CLOCK_MONOTONIC, &now);