From 56d0787bf26c64f83a2616a5eff0b15f2e3066e0 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 11 Dec 2022 14:07:02 +0000 Subject: Fix case of GetViewProjection --- gfx/gl/camera.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gfx/gl/camera.h') diff --git a/gfx/gl/camera.h b/gfx/gl/camera.h index b4dd0d5..e22d23f 100644 --- a/gfx/gl/camera.h +++ b/gfx/gl/camera.h @@ -7,7 +7,7 @@ class Camera { public: Camera(glm::vec3 pos, float fov, float aspect, float zNear, float zFar); - [[nodiscard]] glm::mat4 GetViewProjection() const; + [[nodiscard]] glm::mat4 getViewProjection() const; [[nodiscard]] Ray unProject(const glm::vec2 &) const; glm::vec3 pos; -- cgit v1.2.3