11 lines
124 B
C
11 lines
124 B
C
#pragma once
|
|
|
|
#include "vk_mem_alloc.h"
|
|
|
|
/*
|
|
* Gpu memory node.
|
|
*/
|
|
struct GpuAllocation {
|
|
VmaAllocation allocation;
|
|
};
|