MCPcopy Create free account
hub / github.com/KhronosGroup/KTX-Software / streamout

Function streamout

tools/ktx2check/ktx2check.cpp:915–923  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

913}
914
915void
916streamout(stringstream& oss, const char* s, int length)
917{
918 // Can't find a way to get stringstream to truncate a stream.
919 if (length != 0)
920 oss.write(s, length);
921 else
922 oss << s;
923}
924
925template <typename T>
926void streamout(stringstream&oss, T value, int)

Callers 1

sprintfFunction · 0.85

Calls 1

writeMethod · 0.45

Tested by

no test coverage detected