summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 6b40c84..260d215 100644
--- a/src/main.c
+++ b/src/main.c
@@ -27,7 +27,8 @@ static constexpr int WindowWidth = 640;
27static constexpr int WindowHeight = 480; 27static constexpr int WindowHeight = 480;
28static constexpr sgVec2i WindowDims = (sgVec2i){.x = WindowWidth, .y = WindowHeight}; 28static constexpr sgVec2i WindowDims = (sgVec2i){.x = WindowWidth, .y = WindowHeight};
29 29
30static constexpr R Fovy = (R)(90 * TO_RAD); 30// 90 fovx at 4:3 -> 73.73 fovy.
31static constexpr R Fovy = (R)(73.73 * TO_RAD);
31static constexpr R Near = 0.01f; 32static constexpr R Near = 0.01f;
32static constexpr R Far = 100.0f; 33static constexpr R Far = 100.0f;
33 34