add RrColorGC

This commit is contained in:
Dana Jansens 2003-08-31 17:01:53 +00:00
parent 02045b14d6
commit f90167d8b5

View file

@ -259,3 +259,11 @@ gulong RrColorPixel(const RrColor *c)
{ {
return c->pixel; 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;
}