aurora/lib/dolphin/GXExtra.cpp

12 lines
245 B
C++
Raw Normal View History

2022-07-27 15:25:25 +00:00
#include "gx.hpp"
void GXDestroyTexObj(GXTexObj* obj_) {
auto* obj = reinterpret_cast<GXTexObj_*>(obj_);
obj->ref.reset();
}
2022-08-09 22:26:53 +00:00
void GXDestroyTlutObj(GXTlutObj* obj_) {
auto* obj = reinterpret_cast<GXTlutObj_*>(obj_);
obj->ref.reset();
}