| 82 | } |
| 83 | |
| 84 | fg_err fg_get_histogram_vertex_buffer(unsigned* pOut, const fg_histogram pHistogram) |
| 85 | { |
| 86 | try { |
| 87 | ARG_ASSERT(1, (pHistogram!=0)); |
| 88 | |
| 89 | *pOut = getHistogram(pHistogram)->vbo(); |
| 90 | } |
| 91 | CATCHALL |
| 92 | |
| 93 | return FG_ERR_NONE; |
| 94 | } |
| 95 | |
| 96 | fg_err fg_get_histogram_color_buffer(unsigned* pOut, const fg_histogram pHistogram) |
| 97 | { |
no test coverage detected