]> git.sur5r.net Git - i3/i3/blob - include/render.h
849f214e5f1ef379b57b20fa86642ba1dbcd7bed
[i3/i3] / include / render.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  */
4
5 #ifndef _RENDER_H
6 #define _RENDER_H
7
8 /**
9  * "Renders" the given container (and its children), meaning that all rects are
10  * updated correctly. Note that this function does not call any xcb_*
11  * functions, so the changes are completely done in memory only (and
12  * side-effect free). As soon as you call x_push_changes(), the changes will be
13  * updated in X11.
14  *
15  */
16 void render_con(Con *con);
17
18 #endif