예제 #1
0
void cxTextureFactoryUnloadFile(cxConstChars file)
{
    cxTextureFactory factory = cxTextureFactoryInstance();
    cxHashDel(factory->caches, cxHashStrKey(file));
}
예제 #2
0
void cxEngineRemoveScript(cxConstChars file)
{
    cxEngine this = cxEngineInstance();
    CX_RETURN(file == NULL);
    cxHashDel(this->scripts, cxHashStrKey(file));
}