implemented dear imgui for librw

This commit is contained in:
aap
2017-12-30 11:43:17 +01:00
parent d522a47120
commit 578c5f81fb
25 changed files with 26976 additions and 13 deletions

View File

@ -113,6 +113,15 @@ TexDictionary::add(Texture *t)
this->textures.append(&t->inDict);
}
void
TexDictionary::addFront(Texture *t)
{
if(t->dict)
t->inDict.remove();
t->dict = this;
this->textures.add(&t->inDict);
}
Texture*
TexDictionary::find(const char *name)
{