MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / PrintDetailedMap_UnusedRange

Method PrintDetailedMap_UnusedRange

3rdparty/d3d12memalloc/src/D3D12MemAlloc.cpp:3247–3262  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3245}
3246
3247void BlockMetadata::PrintDetailedMap_UnusedRange(JsonWriter& json,
3248 UINT64 offset, UINT64 size) const
3249{
3250 json.BeginObject(true);
3251
3252 json.WriteString(L"Offset");
3253 json.WriteNumber(offset);
3254
3255 json.WriteString(L"Type");
3256 json.WriteString(L"FREE");
3257
3258 json.WriteString(L"Size");
3259 json.WriteNumber(size);
3260
3261 json.EndObject();
3262}
3263
3264void BlockMetadata::PrintDetailedMap_End(JsonWriter& json) const
3265{

Callers

nothing calls this directly

Calls 4

BeginObjectMethod · 0.45
WriteStringMethod · 0.45
WriteNumberMethod · 0.45
EndObjectMethod · 0.45

Tested by

no test coverage detected