summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-05-18 17:09:55 +0000
committerDana Jansens <danakj@orodu.net>2003-05-18 17:09:55 +0000
commit993fc6226d06f25513756251283e70054082ee8a (patch)
treedb6eedc7e86eac7999a26cef8a7bd1be50907a67 /render
parent3c7bf77dd9a14f93a63f9d790c1bdcf79b63eb39 (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')
-rw-r--r--render/render.c7
-rw-r--r--render/render.h3
2 files changed, 10 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;
+}
diff --git a/render/render.h b/render/render.h
index 006eaf4c..3fbf3249 100644
--- a/render/render.h
+++ b/render/render.h
@@ -159,4 +159,7 @@ void pixel32_to_pixmap(pixel32 *in, Pixmap out, int x, int y, int w, int h);
void appearance_minsize(Appearance *l, int *w, int *h);
+void render_pixmap_to_rgba(Pixmap pmap, Pixmap mask,
+ int *w, int *h, gulong **data);
+
#endif /*__render_h*/