14 lines
230 B
C
14 lines
230 B
C
#pragma once
|
|
|
|
#include "MiniVulkan.h"
|
|
|
|
typedef struct {
|
|
VkBuffer buf;
|
|
VkDescriptorBufferInfo buffer_info;
|
|
VkMemoryAllocateInfo mem_alloc;
|
|
VkDeviceMemory mem;
|
|
int lastStart;
|
|
int lastCount;
|
|
int mySize;
|
|
} ConstantBuffer5Impl;
|