summaryrefslogtreecommitdiffstats
path: root/compton.h
diff options
context:
space:
mode:
authorRichard Grenville <[email protected]>2013-06-19 19:36:48 +0800
committerRichard Grenville <[email protected]>2013-06-19 19:36:48 +0800
commit1096bf90d96bc18a7e09fe5f26fa0c703f1fbdf8 (patch)
treeff452d09e30945f965888067fb8cfd0c19cd1005 /compton.h
parent0dca9aa79edbc5e2d665d9f65321adc32a595d2a (diff)
downloadtdebase-1096bf90d96bc18a7e09fe5f26fa0c703f1fbdf8.tar.gz
tdebase-1096bf90d96bc18a7e09fe5f26fa0c703f1fbdf8.zip
Misc: --paint-exclude & #119
- Add --paint-exclude to prevent certain windows from being painted, for debugging purposes. - Add predefined matching target "x", "y", "width", "height", "widthb", "heightb", "border_width", and "fullscreen". - Fix bug #119, wrong man page install dir in CMake configuration. Thanks to sstewartgallus for reporting.
Diffstat (limited to 'compton.h')
-rw-r--r--compton.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/compton.h b/compton.h
index 06d48e1b3..c0773db99 100644
--- a/compton.h
+++ b/compton.h
@@ -478,17 +478,6 @@ dump_drawable(session_t *ps, Drawable drawable) {
}
}
-/**
- * Check if a window is a fullscreen window.
- *
- * It's not using w->border_size for performance measures.
- */
-static inline bool
-win_is_fullscreen(session_t *ps, const win *w) {
- return rect_is_fullscreen(ps, w->a.x, w->a.y, w->widthb, w->heightb)
- && !w->bounding_shaped;
-}
-
static void
win_rounded_corners(session_t *ps, win *w);