MCPcopy Create free account
hub / github.com/arnaud-jamin/Cog / FreeViewRow

Method FreeViewRow

Plugins/Cog/Source/CogDebug/Private/CogDebugTracker.cpp:94–105  ·  view source on GitHub ↗

--------------------------------------------------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

92
93//--------------------------------------------------------------------------------------------------------------------------
94void FCogDebugTracker::FreeViewRow(const int32 InViewIndex, const int32 Row)
95{
96 TMap<int32, int32>* GraphOccupation = OccupationMap.Find(InViewIndex);
97 if (GraphOccupation == nullptr)
98 { return; }
99
100 int32* RowOccupation = GraphOccupation->Find(Row);
101 if (RowOccupation == nullptr)
102 { return; }
103
104 (*RowOccupation)--;
105}
106
107//--------------------------------------------------------------------------------------------------------------------------
108int32 FCogDebugTracker::FindFreeViewRow(const int32 InViewIndex)

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected