| 160 | |
| 161 | template<typename T> |
| 162 | void Circle<T>::drawOutline(const GraphicsContext& context, const T lineWidth) |
| 163 | { |
| 164 | DISTRHO_SAFE_ASSERT_RETURN(lineWidth != 0,); |
| 165 | |
| 166 | cairo_t* const handle = static_cast<const CairoGraphicsContext&>(context).handle; |
| 167 | |
| 168 | cairo_set_line_width(handle, lineWidth); |
| 169 | drawCircle<T>(handle, fPos, fNumSegments, fSize, fSin, fCos, true); |
| 170 | } |
| 171 | |
| 172 | #ifdef DGL_ALLOW_DEPRECATED_METHODS |
| 173 | template<typename T> |
nothing calls this directly
no test coverage detected