| 253 | |
| 254 | template<typename T> |
| 255 | void Circle<T>::drawOutline(const GraphicsContext& context, const T lineWidth) |
| 256 | { |
| 257 | DISTRHO_SAFE_ASSERT_RETURN(lineWidth != 0,); |
| 258 | |
| 259 | glLineWidth(static_cast<GLfloat>(lineWidth)); |
| 260 | drawCircle<T>(context, fPos, fNumSegments, fSize, fSin, fCos, true); |
| 261 | } |
| 262 | |
| 263 | #ifdef DGL_ALLOW_DEPRECATED_METHODS |
| 264 | template<typename T> |
nothing calls this directly
no test coverage detected