MCPcopy Create free account
hub / github.com/assimp/assimp / Write

Method Write

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 5

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