diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-12-18 16:47:36 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-12-18 16:47:36 +0000 |
commit | fd16562719e89eb71fc065a7c46df892865af13f (patch) | |
tree | a2f207228d94c0314b90c8e98489dd30252549fa /gfx/gl/camera.h | |
parent | First cut of view scope shadow mapper view (diff) | |
download | ilt-fd16562719e89eb71fc065a7c46df892865af13f.tar.bz2 ilt-fd16562719e89eb71fc065a7c46df892865af13f.tar.xz ilt-fd16562719e89eb71fc065a7c46df892865af13f.zip |
No need to store view or unView
view is transient to create viewProjection, unview only needed on unproject
Diffstat (limited to 'gfx/gl/camera.h')
-rw-r--r-- | gfx/gl/camera.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gfx/gl/camera.h b/gfx/gl/camera.h index 1ded3e0..5b2b4f4 100644 --- a/gfx/gl/camera.h +++ b/gfx/gl/camera.h @@ -74,6 +74,5 @@ private: float fov, aspect, near, far;
glm::mat4 projection;
- glm::mat4 view, unView;
glm::mat4 viewProjection, inverseViewProjection;
};
|