diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-05-18 17:09:55 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-05-18 17:09:55 +0000 |
| commit | 993fc6226d06f25513756251283e70054082ee8a (patch) | |
| tree | db6eedc7e86eac7999a26cef8a7bd1be50907a67 /render/render.c | |
| parent | 3c7bf77dd9a14f93a63f9d790c1bdcf79b63eb39 (diff) | |
2 in 1 deal :\
client.c stacking.c: fixing looping transient case for group transient windows. now a window which is transient for a group is *not* transient for any other transient windows in the group (perviously the other window had to be transient for the group to be excluded, now it can be transient for anything).
client.c/h event.c render.c/h: adjustnig icon handling a bit. will be converting the legacy pixmap icons into rgba data so they can be handled the same as netwm icons.
Diffstat (limited to 'render/render.c')
| -rw-r--r-- | render/render.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/render/render.c b/render/render.c index 804e6c36..a1022bd0 100644 --- a/render/render.c +++ b/render/render.c @@ -467,3 +467,10 @@ void appearance_minsize(Appearance *l, int *w, int *h) break; } } + +void render_pixmap_to_rgba(Pixmap pmap, Pixmap mask, + int *w, int *h, gulong **data) +{ + *w = *h = 0; + *data = NULL; +} |
