Removed outdated todos

This commit is contained in:
Sascha Willems 2024-01-21 13:58:37 +01:00
parent afde90dcfd
commit 213bf850d5
5 changed files with 1 additions and 6 deletions

View file

@ -506,7 +506,6 @@ public:
{
uniformData.projection = camera.matrices.perspective;
uniformData.view = camera.matrices.view;
// @todo: paused
uniformData.model = glm::rotate(glm::mat4(1.0f), glm::radians(timer * 360.0f), glm::vec3(1.0f, 0.0f, 0.0f));
uniformData.viewPos = glm::vec4(camera.position, 0.0f) * glm::vec4(-1.0f);
memcpy(uniformBuffer.mapped, &uniformData, sizeof(uniformData));