light/modules/renderer/data.cppm
light7734 3c0dcb672e
Some checks reported errors
continuous-integration/drone/push Build was killed
wip: convert from include style to module import style :D
2025-11-07 22:59:33 +03:30

12 lines
174 B
C++

export module renderer.data;
#include <math/mat4.hpp>
namespace lt::renderer {
export struct FrameConstants
{
math::mat4 view_projection;
};
} // namespace lt::renderer