Move rendering functions into render.c

This commit is contained in:
Ryan Dwyer 2018-07-01 12:15:02 +10:00
parent f611a4f9b1
commit ce7e5b9f10
4 changed files with 1018 additions and 814 deletions

View file

@ -0,0 +1,9 @@
#ifndef _SWAY_RENDER_H
#define _SWAY_RENDER_H
#include <pixman.h>
#include "sway/output.h"
void render_output(struct sway_output *output, struct timespec *when,
pixman_region32_t *damage);
#endif