MCPcopy Create free account
hub / github.com/Overload-Technologies/Overload / Write

Method Write

Dependencies/assimp/code/Common/DefaultIOStream.cpp:102–109  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

100
101// ----------------------------------------------------------------------------------
102size_t DefaultIOStream::Write(const void *pvBuffer,
103 size_t pSize,
104 size_t pCount) {
105 ai_assert(nullptr != pvBuffer);
106 ai_assert(0 != pSize);
107
108 return (mFile ? ::fwrite(pvBuffer, pSize, pCount, mFile) : 0);
109}
110
111// ----------------------------------------------------------------------------------
112aiReturn DefaultIOStream::Seek(size_t pOffset,

Callers 12

ExportAsciiMethod · 0.45
WriteAsciiHeaderMethod · 0.45
WriteBinaryHeaderMethod · 0.45
WriteBinaryFooterMethod · 0.45
DumpMethod · 0.45
ExportSceneObjFunction · 0.45
ExportSceneObjNoMtlFunction · 0.45
writeMethod · 0.45
WriteHeaderMethod · 0.45
WriteDIBMethod · 0.45
WriteDataMethod · 0.45
PbrtExporterMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected