18 lines
222 B
C++
18 lines
222 B
C++
#pragma once
|
|
|
|
#include <cinttypes>
|
|
#include <array>
|
|
|
|
namespace zgl
|
|
{
|
|
|
|
template<std::size_t Count>
|
|
struct uniform_buffer_alignment_metadata
|
|
{
|
|
std::array<std::size_t, Count> byte_offsets{};
|
|
std::size_t byte_size{};
|
|
};
|
|
|
|
|
|
}
|