2010-03-27 15:25:51 +01:00
|
|
|
/*
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _RENDER_H
|
|
|
|
#define _RENDER_H
|
|
|
|
|
2010-07-13 11:35:05 +02:00
|
|
|
/**
|
|
|
|
* "Renders" the given container (and its children), meaning that all rects are
|
|
|
|
* updated correctly. Note that this function does not call any xcb_*
|
|
|
|
* functions, so the changes are completely done in memory only (and
|
|
|
|
* side-effect free). As soon as you call x_push_changes(), the changes will be
|
|
|
|
* updated in X11.
|
|
|
|
*
|
|
|
|
*/
|
2010-11-21 17:00:10 +01:00
|
|
|
void render_con(Con *con, bool render_fullscreen);
|
2010-03-27 15:25:51 +01:00
|
|
|
|
|
|
|
#endif
|