MCPcopy Create free account
hub / github.com/OpenPathGuidingLibrary/openpgl / cpy8

Function cpy8

third-party/tinyexr/tinyexr.h:887–899  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

885
886#if 0
887static void cpy8(tinyexr::tinyexr_uint64 *dst_val, const tinyexr::tinyexr_uint64 *src_val) {
888 unsigned char *dst = reinterpret_cast<unsigned char *>(dst_val);
889 const unsigned char *src = reinterpret_cast<const unsigned char *>(src_val);
890
891 dst[0] = src[0];
892 dst[1] = src[1];
893 dst[2] = src[2];
894 dst[3] = src[3];
895 dst[4] = src[4];
896 dst[5] = src[5];
897 dst[6] = src[6];
898 dst[7] = src[7];
899}
900#endif
901
902static void swap8(tinyexr::tinyexr_uint64 *val) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected