MCPcopy Create free account
hub / github.com/SakuraEngine/SakuraEngine / BeginString

Method BeginString

modules/engine/graphics/src/d3d12/D3D12MemAlloc.cpp:1408–1419  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1406}
1407
1408void JsonWriter::BeginString(LPCWSTR pStr)
1409{
1410 D3D12MA_ASSERT(!m_InsideString);
1411
1412 BeginValue(true);
1413 m_InsideString = true;
1414 m_SB.Add(L'"');
1415 if (pStr != NULL)
1416 {
1417 ContinueString(pStr);
1418 }
1419}
1420
1421void JsonWriter::ContinueString(LPCWSTR pStr)
1422{

Callers 1

NormalBlockClass · 0.45

Calls 1

AddMethod · 0.45

Tested by

no test coverage detected