Clean up some things better in wayland clients

This commit is contained in:
Drew DeVault 2015-11-13 10:27:16 -05:00
parent 1011957465
commit f7c0d2badb
3 changed files with 27 additions and 14 deletions

View file

@ -23,7 +23,7 @@ add_executable(swaybg
${common}
)
TARGET_LINK_LIBRARIES(swaybg ${WAYLAND_CLIENT_LIBRARIES} ${CAIRO_LIBRARIES} ${PANGO_LIBRARIES})
TARGET_LINK_LIBRARIES(swaybg ${WAYLAND_CLIENT_LIBRARIES} ${CAIRO_LIBRARIES} ${PANGO_LIBRARIES} -lm)
install(
TARGETS swaybg

View file

@ -1,6 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <wayland-client.h>
#include <time.h>
#include "client.h"
#include "log.h"
@ -17,18 +18,28 @@ int main(int argc, char **argv) {
uint8_t r = 0, g = 0, b = 0;
long last_ms = 0;
int rs;
do {
if (!client_prerender(state)) continue;
struct timespec spec;
clock_gettime(CLOCK_MONOTONIC, &spec);
long ms = round(spec.tv_nsec / 1.0e6);
cairo_set_source_rgb(state->cairo, r, g, b);
cairo_rectangle(state->cairo, 0, 0, 100, 100);
cairo_fill(state->cairo);
rs = client_render(state);
if (rs == 1) {
sway_log(L_INFO, "rendering %d %d %d", r, g, b);
r++; g++; b++;
if (ms - last_ms > 100) {
r++;
if (r == 0) {
g++;
if (g == 0) {
b++;
}
}
ms = last_ms;
}
} while (rs);