| 164 | } |
| 165 | |
| 166 | plot_impl::~plot_impl() |
| 167 | { |
| 168 | for (auto it = mVAOMap.begin(); it!=mVAOMap.end(); ++it) { |
| 169 | GLuint vao = it->second; |
| 170 | glDeleteVertexArrays(1, &vao); |
| 171 | } |
| 172 | glDeleteBuffers(1, &mRBO); |
| 173 | } |
| 174 | |
| 175 | void plot_impl::setMarkerSize(const float pMarkerSize) |
| 176 | { |
nothing calls this directly
no outgoing calls
no test coverage detected