MCPcopy Create free account
hub / github.com/KAlO2/PerfectShow / EyawAsString

Function EyawAsString

jni/stasm/misc.cpp:889–902  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

887}
888
889const char* EyawAsString(EYAW eyaw) // utility for debugging/tracing
890{
891 switch (int(eyaw))
892 {
893 case EYAW00: return "YAW00";
894 case EYAW_45: return "YAW_45";
895 case EYAW_22: return "YAW_22";
896 case EYAW22: return "YAW22";
897 case EYAW45: return "YAW45";
898 case INVALID: return "YAW_Inv";
899 default: Err("YawAsString: Invalid eyaw %d", eyaw); break;
900 }
901 return NULL; // prevent compiler warning
902}
903
904#if TRACE_IMAGES
905unsigned EyawAsColor(EYAW eyaw)

Callers 3

StartShapeAndRoiFunction · 0.85
TraceEyeMouthImgFunction · 0.85
PinnedStartShapeAndRoiFunction · 0.85

Calls 1

ErrFunction · 0.85

Tested by

no test coverage detected