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

Method BeginArray

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

Source from the content-addressed store, hash-verified

5874}
5875
5876void VmaJsonWriter::BeginArray(bool singleLine)
5877{
5878 VMA_ASSERT(!m_InsideString);
5879
5880 BeginValue(false);
5881 m_SB.Add('[');
5882
5883 StackItem item;
5884 item.type = COLLECTION_TYPE_ARRAY;
5885 item.valueCount = 0;
5886 item.singleLineMode = singleLine;
5887 m_Stack.push_back(item);
5888}
5889
5890void VmaJsonWriter::EndArray()
5891{

Callers 4

BuildStatsStringMethod · 0.80
PrintDetailedMapMethod · 0.80
vmaBuildStatsStringFunction · 0.80

Calls 2

AddMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected