mirror of
https://github.com/zeldaret/ss
synced 2026-08-13 20:24:26 -04:00
20 lines
306 B
C++
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
|