MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / write

Method write

Engine/source/core/stream/stream.cpp:264–272  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

262
263
264bool Stream::write(const ColorI& rColor)
265{
266 bool success = write(rColor.red);
267 success |= write(rColor.green);
268 success |= write(rColor.blue);
269 success |= write(rColor.alpha);
270
271 return success;
272}
273
274bool Stream::write(const LinearColorF& rColor)
275{

Callers 5

writesFunction · 0.45
writeToStreamMethod · 0.45
writeHuffBufferMethod · 0.45
flushMethod · 0.45
_writeMethod · 0.45

Calls 6

toColorIMethod · 0.80
LinearColorFClass · 0.70
writeFunction · 0.50
getHandleMethod · 0.45
getBufferSizeMethod · 0.45
getBufferMethod · 0.45

Tested by

no test coverage detected