mirror of
https://github.com/zeldaret/ss
synced 2026-08-21 06:28:25 -04:00
26 lines
558 B
C++
26 lines
558 B
C++
#ifndef NW4R_G3D_WORKMEM_H
|
|
#define NW4R_G3D_WORKMEM_H
|
|
#include "types_nw4r.h"
|
|
|
|
#define G3D_WORKMEM_SIZE 0x18000
|
|
|
|
namespace nw4r
|
|
{
|
|
namespace g3d
|
|
{
|
|
namespace detail
|
|
{
|
|
namespace workmem
|
|
{
|
|
void * GetScaleTemporary();
|
|
void * GetMtxIDTemporary();
|
|
void * GetMdlZTemporary();
|
|
void * GetSkinningMtxTemporary();
|
|
void * GetBillboardMtxTemporary();
|
|
void * GetShpAnmResultBufTemporary();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif |