More TODOs.

This commit is contained in:
Pietro Gagliardi 2016-05-14 11:39:51 -04:00
parent f0d6f84083
commit 232839020f
1 changed files with 1 additions and 0 deletions

View File

@ -197,6 +197,7 @@ void uiDrawStroke(uiDrawContext *c, uiDrawPath *path, uiDrawBrush *b, uiDrawStro
// for a solid fill, we can merely have Core Graphics fill directly
static void fillSolid(CGContextRef ctxt, uiDrawPath *p, uiDrawBrush *b)
{
// TODO this uses DeviceRGB; switch to sRGB?
CGContextSetRGBFillColor(ctxt, b->R, b->G, b->B, b->A);
switch (p->fillMode) {
case uiDrawFillModeWinding: