mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-26 10:34:30 +00:00
15 lines
404 B
C++
15 lines
404 B
C++
#pragma once
|
|
|
|
#include <math/seadMatrix.h>
|
|
|
|
namespace al {
|
|
class GraphicsSystemInfo;
|
|
class ModelKeeper;
|
|
|
|
bool isGreaterEqualMaxLodLevelNoClamp(const ModelKeeper* modelKeeper);
|
|
bool isLessMaxLodLevelNoClamp(const ModelKeeper* modelKeeper);
|
|
void setModelProjMtx0(const ModelKeeper*, const sead::Matrix44f&);
|
|
void forceApplyCubeMap(ModelKeeper*, const GraphicsSystemInfo*, const char*);
|
|
|
|
} // namespace al
|