summaryrefslogtreecommitdiff
path: root/gfx/gl/camera.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2022-12-11 14:07:02 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2022-12-11 14:07:02 +0000
commit56d0787bf26c64f83a2616a5eff0b15f2e3066e0 (patch)
tree94d3255948ad374dc864aa2abe1defa3aaefa8b4 /gfx/gl/camera.h
parentSupport saving a normals texture (diff)
downloadilt-56d0787bf26c64f83a2616a5eff0b15f2e3066e0.tar.bz2
ilt-56d0787bf26c64f83a2616a5eff0b15f2e3066e0.tar.xz
ilt-56d0787bf26c64f83a2616a5eff0b15f2e3066e0.zip
Fix case of GetViewProjection
Diffstat (limited to 'gfx/gl/camera.h')
-rw-r--r--gfx/gl/camera.h2
1 files changed, 1 insertions, 1 deletions
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;