More TODOs.

This commit is contained in:
Pietro Gagliardi 2016-05-05 21:57:20 -04:00
parent 9d2b637aa2
commit 725a97faba
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@ void uiDrawTransform(uiDrawContext *c, uiDrawMatrix *m)
// Direct2D uses column vectors and I don't know if this is even documented
// b) that's what Core Graphics does
// TODO see if Microsoft says to do this
dm = dm * cur;
dm = dm * cur; // TODO why not *= ?
c->rt->SetTransform(&dm);
}