| 253 | } |
| 254 | |
| 255 | void OpenGLWrapper::SetFillColour(wxColour col, float alpha) { |
| 256 | fill_r = col.Red() / 255.f; |
| 257 | fill_g = col.Green() / 255.f; |
| 258 | fill_b = col.Blue() / 255.f; |
| 259 | fill_a = alpha; |
| 260 | } |
| 261 | |
| 262 | void OpenGLWrapper::SetModeLine() const { |
| 263 | glColor4f(line_r, line_g, line_b, line_a); |
no outgoing calls
no test coverage detected