| 16 | namespace DynamicRangeProcessorPanel |
| 17 | { |
| 18 | std::unique_ptr<wxGraphicsContext> MakeGraphicsContext(const wxPaintDC& dc) |
| 19 | { |
| 20 | auto gc = wxGraphicsContext::Create(dc); |
| 21 | gc->SetAntialiasMode(wxANTIALIAS_DEFAULT); |
| 22 | gc->SetInterpolationQuality(wxINTERPOLATION_BEST); |
| 23 | return std::unique_ptr<wxGraphicsContext>(gc); |
| 24 | } |
| 25 | |
| 26 | wxColor GetColorMix(const wxColor& a, const wxColor& b, double aWeight) |
| 27 | { |
no test coverage detected