15struct camera_position final {
16 std::vector<float> model_view_m;
17 std::vector<float> projection_m;
19 camera_position(std::vector<float> model_view_m_,
20 std::vector<float> projection_m_)
21 : model_view_m(std::move(model_view_m_))
22 , projection_m(std::move(projection_m_))