i3
render.h
Go to the documentation of this file.
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * render.c: Renders (determines position/sizes) the layout tree, updating the
8  * various rects. Needs to be pushed to X11 (see x.c) to be visible.
9  *
10  */
11 #ifndef I3_RENDER_H
12 #define I3_RENDER_H
13 
22 void render_con(Con *con, bool render_fullscreen);
23 
24 /*
25  * Returns the height for the decorations
26  */
27 int render_deco_height(void);
28 
29 #endif