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

Class UniformBufferObject

code/25_sampler.cpp:105–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103};
104
105struct UniformBufferObject {
106 alignas(16) glm::mat4 model;
107 alignas(16) glm::mat4 view;
108 alignas(16) glm::mat4 proj;
109};
110
111const std::vector<Vertex> vertices = {
112 {{-0.5f, -0.5f}, {1.0f, 0.0f, 0.0f}},

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected