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

Method BeginString

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

Source from the content-addressed store, hash-verified

6143}
6144
6145void VmaJsonWriter::BeginString(const char* pStr)
6146{
6147 VMA_ASSERT(!m_InsideString);
6148
6149 BeginValue(true);
6150 m_SB.Add('"');
6151 m_InsideString = true;
6152 if (pStr != VMA_NULL && pStr[0] != '\0')
6153 {
6154 ContinueString(pStr);
6155 }
6156}
6157
6158void VmaJsonWriter::ContinueString(const char* pStr)
6159{

Callers 4

PrintParametersMethod · 0.80
PrintDetailedMapMethod · 0.80
vmaBuildStatsStringFunction · 0.80

Calls 1

AddMethod · 0.45

Tested by

no test coverage detected