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

Class UniformBufferObject

code/23_descriptor_sets.cpp:102–106  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

100};
101
102struct UniformBufferObject {
103 alignas(16) glm::mat4 model;
104 alignas(16) glm::mat4 view;
105 alignas(16) glm::mat4 proj;
106};
107
108const std::vector<Vertex> vertices = {
109 {{-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