Some checks failed
continuous-integration/drone/push Build is failing
Reviewed-on: #62 Co-authored-by: light7734 <light7734@tuta.io> Co-committed-by: light7734 <light7734@tuta.io>
12 lines
151 B
C++
12 lines
151 B
C++
#pragma once
|
|
|
|
#include <math/mat4.hpp>
|
|
|
|
namespace lt::renderer {
|
|
|
|
struct FrameConstants
|
|
{
|
|
math::mat4 view_projection;
|
|
};
|
|
|
|
} // namespace lt::renderer
|