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

Method WriteBool

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

Source from the content-addressed store, hash-verified

1510}
1511
1512void JsonWriter::WriteBool(bool b)
1513{
1514 D3D12MA_ASSERT(!m_InsideString);
1515 BeginValue(false);
1516 if (b)
1517 m_SB.Add(L"true");
1518 else
1519 m_SB.Add(L"false");
1520}
1521
1522void JsonWriter::WriteNull()
1523{

Callers 1

NormalBlockClass · 0.45

Calls 1

AddMethod · 0.45

Tested by

no test coverage detected