MCPcopy Create free account
hub / github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator / data

Method data

include/vk_mem_alloc.h:4711–4711  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4709 bool empty() const { return m_Count == 0; }
4710 size_t size() const { return m_Count; }
4711 T* data() { return m_pArray; }
4712 T& front() { VMA_HEAVY_ASSERT(m_Count > 0); return m_pArray[0]; }
4713 T& back() { VMA_HEAVY_ASSERT(m_Count > 0); return m_pArray[m_Count - 1]; }
4714 const T* data() const { return m_pArray; }

Callers 15

LoadShaderFunction · 0.45
InitMethod · 0.45
SelectPhysicalDeviceMethod · 0.45
CreateSwapchainFunction · 0.45
InitializeApplicationFunction · 0.45
ValidateContentMethod · 0.45
InitMethod · 0.45
~SparseBindingImageMethod · 0.45
ReadFileFunction · 0.45
PrintMessageVFunction · 0.45
ConvertCharsToUnicodeFunction · 0.45

Calls

no outgoing calls