light/modules/renderer/data.cppm
light7734 2f60b837c9
Some checks reported errors
continuous-integration/drone/push Build was killed
wip: convert from include style to module import style :D
2025-11-10 23:16:03 +03:30

13 lines
168 B
C++

export module renderer.data;
import math.mat4;
namespace lt::renderer {
export struct FrameConstants
{
math::mat4 view_projection;
};
} // namespace lt::renderer