MCPcopy Create free account
hub / github.com/comaps/comaps / SaveColorToRGB

Function SaveColorToRGB

libs/kml/serdes_gpx.cpp:445–449  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

443}
444
445void SaveColorToRGB(Writer & writer, uint32_t rgba)
446{
447 writer << NumToHex(static_cast<uint8_t>(rgba >> 24 & 0xFF)) << NumToHex(static_cast<uint8_t>((rgba >> 16) & 0xFF))
448 << NumToHex(static_cast<uint8_t>((rgba >> 8) & 0xFF));
449}
450
451void SaveColorToARGB(Writer & writer, uint32_t rgba)
452{

Callers 1

SaveTrackDataFunction · 0.85

Calls 1

NumToHexFunction · 0.85

Tested by

no test coverage detected