light/modules/renderer/public/data/frame_constants.hpp

13 lines
151 B
C++
Raw Normal View History

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