Release 1.0.0

- Add basic tiling compositor functionality
This commit is contained in:
Cagebreak Signing Key 1 2020-02-17 17:28:35 +00:00
commit de6c07ca2a
45 changed files with 6864 additions and 0 deletions

9
render.h Normal file
View file

@ -0,0 +1,9 @@
#ifndef CG_RENDER_H
#define CG_RENDER_H
struct cg_output;
void
output_render(struct cg_output *output, pixman_region32_t *damage);
#endif