]> git.lizzy.rs Git - dragonblocks_alpha.git/blob - src/client/frustum.h
Implement frustum culling properly
[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 <dragontype/number.h>
7
8 void frustum_update(mat4x4 view_proj);
9 bool frustum_is_visible(aabb3f32 box);
10
11 #endif