private string GetQuantumName(QuantumDepth depth)
 {
   switch (depth)
   {
     case QuantumDepth.Q8:
     case QuantumDepth.Q16:
       return depth.ToString();
     case QuantumDepth.Q16HDRI:
       return "Q16-HDRI";
     default:
       throw new NotImplementedException();
   }
 }
Exemple #2
0
 private static string GetQuantumName(QuantumDepth depth)
 {
   switch (depth)
   {
     case QuantumDepth.Q8:
     case QuantumDepth.Q16:
       return depth.ToString();
     case QuantumDepth.Q16HDRI:
       return "Q16-HDRI";
     default:
       throw new NotImplementedException();
   }
 }