light/modules/renderer/public/data/frame_constants.hpp
light7734 97ca429d38
Some checks failed
continuous-integration/drone/push Build is failing
feat: frame constants & camera component (#62)
Reviewed-on: #62
Co-authored-by: light7734 <light7734@tuta.io>
Co-committed-by: light7734 <light7734@tuta.io>
2025-10-26 06:56:18 +00:00

12 lines
151 B
C++

#pragma once
#include <math/mat4.hpp>
namespace lt::renderer {
struct FrameConstants
{
math::mat4 view_projection;
};
} // namespace lt::renderer