]> git.lizzy.rs Git - dragonblocks_alpha.git/blob - src/client/frustum.h
fa8eba59b89e8b054eb6f162fd0f093a1837cdaf
[dragonblocks_alpha.git] / src / client / frustum.h
1 #ifndef _FRUSTUM_H_
2 #define _FRUSTUM_H_
3
4 #include <stdbool.h>
5 #include <linmath.h/linmath.h>
6 #include "types.h"
7
8 void frustum_update(mat4x4 view_proj);
9 bool frustum_is_visible(aabb3f32 box);
10
11 #endif