MCPcopy Create free account
hub / github.com/KhronosGroup/glslang / FPRoundingModeString

Function FPRoundingModeString

SPIRV/doc.cpp:709–719  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

707}
708
709const char* FPRoundingModeString(int mode)
710{
711 switch (mode) {
712 case 0: return "RTE";
713 case 1: return "RTZ";
714 case 2: return "RTP";
715 case 3: return "RTN";
716
717 default: return "Bad";
718 }
719}
720
721const char* LinkageTypeString(int type)
722{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected