| 150 | } |
| 151 | |
| 152 | vector_field_impl::~vector_field_impl() |
| 153 | { |
| 154 | for (auto it = mVAOMap.begin(); it!=mVAOMap.end(); ++it) { |
| 155 | GLuint vao = it->second; |
| 156 | glDeleteVertexArrays(1, &vao); |
| 157 | } |
| 158 | glDeleteBuffers(1, &mDBO); |
| 159 | } |
| 160 | |
| 161 | GLuint vector_field_impl::directions() |
| 162 | { |
nothing calls this directly
no outgoing calls
no test coverage detected