Files
ss/include/nw4r/g3d/g3d_init.h
T
2023-12-24 11:35:03 -05:00

20 lines
306 B
C++

#ifndef NW4R_G3D_INIT_H
#define NW4R_G3D_INIT_H
#include "types_nw4r.h"
#include <rvl/OS.h>
namespace nw4r {
namespace g3d {
inline void InitFastCast() {
OSInitFastCast();
OSSetGQR6(7, 5);
OSSetGQR7(7, 8);
}
void G3dInit(bool);
void G3dReset();
} // namespace g3d
} // namespace nw4r
#endif