mirror of
https://github.com/encounter/aurora.git
synced 2025-07-23 05:26:04 +00:00
14 lines
260 B
C++
14 lines
260 B
C++
#include "gx.hpp"
|
|
|
|
extern "C" {
|
|
|
|
void GXDestroyTexObj(GXTexObj* obj_) {
|
|
auto* obj = reinterpret_cast<GXTexObj_*>(obj_);
|
|
obj->ref.reset();
|
|
}
|
|
|
|
void GXDestroyTlutObj(GXTlutObj* obj_) {
|
|
auto* obj = reinterpret_cast<GXTlutObj_*>(obj_);
|
|
obj->ref.reset();
|
|
}
|
|
} |