summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
Diffstat (limited to 'render')
-rw-r--r--render/color.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/render/color.c b/render/color.c
index 37ef5532..f791b9c4 100644
--- a/render/color.c
+++ b/render/color.c
@@ -259,3 +259,11 @@ gulong RrColorPixel(const RrColor *c)
{
return c->pixel;
}
+
+GC RrColorGC(RrColor *c) /* XXX make this const RrColor* when the GCs are in
+ a cache.. if possible? */
+{
+ if (!c->gc)
+ RrColorAllocateGC(c);
+ return c->gc;
+}