Program Listing for File standard_ubo.hpp

Return to documentation for file (inexor/vulkan-renderer/standard_ubo.hpp)

#pragma once

#include <glm/glm.hpp>

namespace inexor::vulkan_renderer {

struct UniformBufferObject {
    glm::mat4 model;
    glm::mat4 view;
    glm::mat4 proj;
};

} // namespace inexor::vulkan_renderer