MCPcopy Create free account
hub / github.com/ErrorAtLine0/infinipaint / data

Method data

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

Source from the content-addressed store, hash-verified

4481 bool empty() const { return m_Count == 0; }
4482 size_t size() const { return m_Count; }
4483 T* data() { return m_pArray; }
4484 T& front() { VMA_HEAVY_ASSERT(m_Count > 0); return m_pArray[0]; }
4485 T& back() { VMA_HEAVY_ASSERT(m_Count > 0); return m_pArray[m_Count - 1]; }
4486 const T* data() const { return m_pArray; }

Callers 7

VmaVectorInsertSortedFunction · 0.45
dataMethod · 0.45
resizeMethod · 0.45
GetDataMethod · 0.45
AddMethod · 0.45
DefragmentPassBeginMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected