mirror of https://github.com/encounter/aurora.git
7 lines
130 B
C++
7 lines
130 B
C++
|
#include "gx.hpp"
|
||
|
|
||
|
void GXDestroyTexObj(GXTexObj* obj_) {
|
||
|
auto* obj = reinterpret_cast<GXTexObj_*>(obj_);
|
||
|
obj->ref.reset();
|
||
|
}
|