mirror of
https://github.com/GTAmodding/re3.git
synced 2021-02-19 17:49:54 +01:00
add textures in correct order
This commit is contained in:
parent
552f8c864f
commit
7bd12f4a48
@ -339,7 +339,7 @@ RwBool rwNativeTextureHackRead(RwStream *stream, RwTexture **tex, RwInt32 size)
|
|||||||
|
|
||||||
RwTexDictionary *RwTexDictionaryCreate(void) { return TexDictionary::create(); }
|
RwTexDictionary *RwTexDictionaryCreate(void) { return TexDictionary::create(); }
|
||||||
RwBool RwTexDictionaryDestroy(RwTexDictionary * dict) { dict->destroy(); return true; }
|
RwBool RwTexDictionaryDestroy(RwTexDictionary * dict) { dict->destroy(); return true; }
|
||||||
RwTexture *RwTexDictionaryAddTexture(RwTexDictionary * dict, RwTexture * texture) { dict->add(texture); return texture; }
|
RwTexture *RwTexDictionaryAddTexture(RwTexDictionary * dict, RwTexture * texture) { dict->addFront(texture); return texture; }
|
||||||
//RwTexture *RwTexDictionaryRemoveTexture(RwTexture * texture);
|
//RwTexture *RwTexDictionaryRemoveTexture(RwTexture * texture);
|
||||||
RwTexture *RwTexDictionaryFindNamedTexture(RwTexDictionary * dict, const RwChar * name) { return dict->find(name); }
|
RwTexture *RwTexDictionaryFindNamedTexture(RwTexDictionary * dict, const RwChar * name) { return dict->find(name); }
|
||||||
RwTexDictionary *RwTexDictionaryGetCurrent(void) { return TexDictionary::getCurrent(); }
|
RwTexDictionary *RwTexDictionaryGetCurrent(void) { return TexDictionary::getCurrent(); }
|
||||||
|
Loading…
Reference in New Issue
Block a user