MCPcopy Create free account
hub / github.com/Overv/VulkanTutorial / UniformBufferObject

Class UniformBufferObject

code/26_texture_mapping.cpp:111–115  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109};
110
111struct UniformBufferObject {
112 alignas(16) glm::mat4 model;
113 alignas(16) glm::mat4 view;
114 alignas(16) glm::mat4 proj;
115};
116
117const std::vector<Vertex> vertices = {
118 {{-0.5f, -0.5f}, {1.0f, 0.0f, 0.0f}, {1.0f, 0.0f}},

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected