aboutsummaryrefslogtreecommitdiffstats
path: root/xcompmgr.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix a server resource leak on destroying windows.Dana Jansens2008-02-131-0/+5
|
* Make this loop slightly easier to read.Tilman Sauerbeck2007-03-121-2/+4
|
* Constified some variables.Tilman Sauerbeck2007-03-121-2/+2
|
* Include getopt.h for getopt().Tilman Sauerbeck2007-03-121-0/+1
| | | | | I think this should be portable. If it isn't, please yell at me and I'll add the necessary autoconf magic.
* Fixed a bunch of warnings.Tilman Sauerbeck2007-03-121-15/+4
|
* Bug #9762: Fix opacity changes on unmapped windows.Mark Tiefenbruck2007-01-251-3/+7
|
* increase version number to 1.1.3Dave Airlie2006-12-211-1/+1
|
* Bug #2703: Fixed a memory leak in the fading code.Tilman Sauerbeck2006-12-031-1/+1
|
* Set the _NET_WM_CM_S* atom on the screen we're running on.Tilman Sauerbeck2006-09-061-2/+8
|
* Make a dummy window with a name, so xrestop can point its finger atEric Anholt2005-10-071-0/+15
| | | | xcompmgr for being such a pig.
* Bug #2391: Fix a use-after-free in run_fades. (Jonathan Briggs)Adam Jackson2005-01-271-3/+8
|
* Make xcompmgr distcheck and have a sane package name/version, and bumpEric Anholt2004-10-161-1/+1
| | | | version to 1.1.1.
* Modified paint_all so that it doesn't draw off-screen windows, and doesn'tdolio2004-09-291-1/+9
| | | | draw shadows on desktop 'root' windows.
* bump version numberAdam Jackson2004-09-271-1/+1
|
* Added command-line options for changing values relevant to fading.dolio2004-09-231-1/+19
|
* Miscellaneous code cleanup and failed allocation checks.dolio2004-09-231-4/+21
|
* Added shadow precomputation for large-enough windows.dolio2004-09-211-6/+61
|
* Print the version number in the usage summary.Adam Jackson2004-09-201-0/+1
|
* Added various options for client-side shadows (offset, opacity,dolio2004-09-181-9/+24
| | | | | blur-radius) based on the work of Thomas Luebking, along with the man entries and usage information to go along with them.
* Changed the usage function to display information on the available options.dolio2004-09-171-1/+11
|
* Added allocation failure checks in shadow_picture and caused it to exitdolio2004-09-171-0/+20
| | | | gracefully rather than writing to unallocated memory.
* Bug #1360: Fix a segfault by checking the return value of XQueryTree.Adam Jackson2004-09-141-1/+7
| | | | (Johan Kiviniemi)
* More effects, bug fixes, doc updates.Adam Jackson2004-09-101-30/+174
|
* Remove abort call as it's just annoying. Add -a flag to just use AutomaticKeith Packard2004-08-141-16/+29
| | | | compositing. No glitz, but no screen mangling either.
* Add name window pixmap supportKeith Packard2004-08-131-32/+133
|
* Eliminate 'struct timezone tz' as it isn't used.Keith Packard2004-07-081-2/+1
| | | | reviewed by: Keith Packard
* Add fade-in/fade-out support (-f option). Clean up leak of solid alphaKeith Packard2004-07-081-68/+297
| | | | picture per redraw of constant-alpha windows.
* Only use XCompositeNameWindowPixmap when the library provides itKeith Packard2004-06-271-0/+12
|
* Make composite manager mode run-time selectable with command line option:Keith Packard2004-06-271-84/+130
| | | | | | -s: server-side shadows (sharp, but follows window alpha) -c: client-side shadows (blurred, but uses window extents only) -n: no shadows (this is the default mode)
* Ok, this synchronizes all of my changes for the last many months. Has codeKeith Packard2004-06-271-149/+366
| | | | | | to do server-based shadows (SHARP_SHADOW). Has code to try and ignore appropriate errors (helps somewhat). Has code to handle global window translucency. Lots of other minor changes.
* Track whether cliplists have changed and avoid computation when not. ShrinkKeith Packard2003-12-021-69/+75
| | | | | | shadows. Speed up shadow construction a bit by using memset. Eliminate useless INTERVAL code. Use XSync after paint_all to gather more events per update.
* Add support for CM_TRANSLUCENT property.Keith Packard2003-11-241-9/+139
| | | | reviewed by: Keith Packard <keithp@keithp.com>
* Rename gussianMap to gaussianMap (who the heck is gus?) Allow for otherKeith Packard2003-11-231-94/+245
| | | | | | | | names for the root pixmap Handle non-zero border widths better (need Composite change to display them though). Add MONITOR_UPDATE mode that eliminates double buffering and blanks the screen to make sequence of update operations visible. Leave damage object around to catch map damage right. Add CirculateNotify support.
* Fix for latest Xfixes changes.Eric Anholt2003-11-231-9/+7
| | | | Submitted by: <stephan@wilkogazu.nl>
* Eliminate several compiler warnings: missing includes, static functions,Carl Worth2003-11-191-47/+41
| | | | | unused variables. Remove confusing informational messages with the word "error" in them.
* Made gussian_map get called just once rather than N timesMatthew Allum2003-11-141-17/+19
|
* Eliminate all delays in updates; let the X server scheduling handle things.Keith Packard2003-11-141-1/+13
|
* Reduce scheduling latency to 10msKeith Packard2003-11-131-1/+1
|
* Use an alpha map instead of an ARGB picture for shadows. Update last_updateKeith Packard2003-11-131-12/+29
| | | | only when actually updating windows.
* Detect ARGB windows, don't give them shadows, compose them correctly.Keith Packard2003-11-111-26/+51
|
* Track changes to _XROOTPMAP_ID propertyKeith Packard2003-11-101-2/+18
|
* Add a bit of scheduling to updates; update every 30 ms instead of waitingKeith Packard2003-11-101-5/+26
| | | | | for more events. Smooths out window moving. Interval needs to be configurable probably.
* Make sure _XROOTPMAP_ID property is right type, format and length beforeKeith Packard2003-11-101-1/+2
| | | | attempting to use the resulting value.
* Configure damage must include shadow region, not just window. Also, leakingKeith Packard2003-11-101-2/+3
| | | | region on each configure.
* oops. Left in an XSynchronize call.Keith Packard2003-11-101-1/+0
|
* Double buffer updates. Check for InputOnly windows and ignore themKeith Packard2003-11-101-19/+107
|
* Detect root pattern with undocumented _XROOTPMAP_ID propertyKeith Packard2003-11-101-5/+49
|
* Add drop shadows.Keith Packard2003-11-101-18/+300
|
* Initial revisionKeith Packard2003-11-091-0/+472