quakeforge/include/QF/Vulkan/projection.h
Bill Currie c86f0c9449 [vulkan] Move projection matrix code to its own file
And move more stuff over to simd.
2021-04-25 15:48:21 +09:00

10 lines
310 B
C

#ifndef __QF_Vulkan_projection_h
#define __QF_Vulkan_projection_h
#include "QF/simd/types.h"
void QFV_Orthographic (mat4f_t proj, float xmin, float xmax,
float ymin, float ymax, float znear, float zfar);
void QFV_Perspective (mat4f_t proj, float fov, float aspect);
#endif//__QF_Vulkan_projection_h