| 69 | } |
| 70 | |
| 71 | fg_err fg_set_histogram_legend(fg_histogram pHistogram, const char* pLegend) |
| 72 | { |
| 73 | try { |
| 74 | ARG_ASSERT(0, (pHistogram!=0)); |
| 75 | ARG_ASSERT(1, (pLegend!=0)); |
| 76 | |
| 77 | getHistogram(pHistogram)->setLegend(pLegend); |
| 78 | } |
| 79 | CATCHALL |
| 80 | |
| 81 | return FG_ERR_NONE; |
| 82 | } |
| 83 | |
| 84 | fg_err fg_get_histogram_vertex_buffer(unsigned* pOut, const fg_histogram pHistogram) |
| 85 | { |
no test coverage detected