MCPcopy Create free account
hub / github.com/TheRealMJP/DeferredTexturing / Serialize

Method Serialize

SampleFramework12/v1.00/Graphics/Model.h:201–213  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

199 static const char* InputElementTypeString(InputElementType elemType);
200
201 template<typename TSerializer> void Serialize(TSerializer& serializer)
202 {
203 BulkSerializeItem(serializer, meshParts);
204 SerializeItem(serializer, numVertices);
205 SerializeItem(serializer, numIndices);
206 SerializeItem(serializer, vtxOffset);
207 SerializeItem(serializer, idxOffset);
208 uint32 idxType = uint32(indexType);
209 SerializeItem(serializer, idxType);
210 indexType = IndexType(idxType);
211 SerializeItem(serializer, aabbMin);
212 SerializeItem(serializer, aabbMax);
213 }
214
215protected:
216

Callers

nothing calls this directly

Calls 3

BulkSerializeItemFunction · 0.85
SerializeItemFunction · 0.85
IndexTypeEnum · 0.85

Tested by

no test coverage detected