improved cmake+hotfix of clang support

This commit is contained in:
2025-01-17 16:56:47 +03:00
parent d0c532df39
commit e0dcb65e3f
2 changed files with 7 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ namespace omath::opengl
{
Camera::Camera(const Vector3& position, const ViewAngles& viewAngles, const projection::ViewPort& viewPort,
const Angle<float, 0, 180, AngleFlags::Clamped>& fov, const float near, const float far) :
const Angle<float, 0.f, 180.f, AngleFlags::Clamped>& fov, const float near, const float far) :
projection::Camera<Mat4x4, ViewAngles>(position, viewAngles, viewPort, fov, near, far)
{
}