summaryrefslogtreecommitdiff
path: root/src/new_render/skybox.c
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-07-20 19:47:25 +1000
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-07-20 19:47:25 +1000
commit58a748dcd77d0caacc9d6ef7a7e7e073ac849ad3 (patch)
tree054108cf40ad4e9c147db4e8723485e72d9a7b98 /src/new_render/skybox.c
parent0a984656f5fec68c90acc612b01f897918c0070b (diff)
resize viewport and fix skybox
Diffstat (limited to 'src/new_render/skybox.c')
-rw-r--r--src/new_render/skybox.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/new_render/skybox.c b/src/new_render/skybox.c
index 8ac8356..b054366 100644
--- a/src/new_render/skybox.c
+++ b/src/new_render/skybox.c
@@ -128,7 +128,8 @@ void Skybox_Draw(Skybox* skybox, Camera camera) {
// Shader data
Mat4 view, proj;
- Camera_ViewProj(&camera, 1000, 1000, &view, &proj);
+ u32x2 dimensions = GPU_Swapchain_GetDimensions();
+ Camera_ViewProj(&camera, dimensions.x, dimensions.y, &view, &proj);
Mat4 new = mat4_ident();
new.data[0] = view.data[0];
new.data[1] = view.data[1];