FileGenerator.MagickTypes.GetFolderName C# (CSharp) Method

GetFolderName() private static method

private static GetFolderName ( QuantumDepth depth ) : string
depth QuantumDepth
return string
    private static string GetFolderName(QuantumDepth depth)
    {
      switch (depth)
      {
        case QuantumDepth.Q8:
          return "ReleaseQ8";
        case QuantumDepth.Q16:
          return "ReleaseQ16";
        case QuantumDepth.Q16HDRI:
          return "ReleaseQ16-HDRI";
        default:
          throw new NotImplementedException();
      }
    }