1#pragma once
2
3#include <nn/gfx/detail/gfx_Misc.h>
4#include <nn/nn_BitTypes.h>
5
6namespace nn::gfx {
7
8struct MemoryPoolInfoData {
9 Bit32 memoryPoolProperty;
10 uint32_t memorySize;
11 detail::Ptr<void> pMemory;
12 char reserved[16];
13};
14
15} // namespace nn::gfx