| 119 | } |
| 120 | |
| 121 | histogram_impl::~histogram_impl() |
| 122 | { |
| 123 | for (auto it = mVAOMap.begin(); it!=mVAOMap.end(); ++it) { |
| 124 | GLuint vao = it->second; |
| 125 | glDeleteVertexArrays(1, &vao); |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | void histogram_impl::render(const int pWindowId, |
| 130 | const int pX, const int pY, const int pVPW, const int pVPH, |
nothing calls this directly
no outgoing calls
no test coverage detected