]> git.sur5r.net Git - i3/i3/blob - include/render.h
Merge branch 'next'
[i3/i3] / include / render.h
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
14 /**
15  * "Renders" the given container (and its children), meaning that all rects are
16  * updated correctly. Note that this function does not call any xcb_*
17  * functions, so the changes are completely done in memory only (and
18  * side-effect free). As soon as you call x_push_changes(), the changes will be
19  * updated in X11.
20  *
21  */
22 void render_con(Con *con, bool render_fullscreen);
23
24 #endif