| 106 | } |
| 107 | |
| 108 | fg_err fg_get_histogram_alpha_buffer(unsigned* pOut, const fg_histogram pHistogram) |
| 109 | { |
| 110 | try { |
| 111 | ARG_ASSERT(1, (pHistogram!=0)); |
| 112 | |
| 113 | *pOut = getHistogram(pHistogram)->abo(); |
| 114 | } |
| 115 | CATCHALL |
| 116 | |
| 117 | return FG_ERR_NONE; |
| 118 | } |
| 119 | |
| 120 | fg_err fg_get_histogram_vertex_buffer_size(unsigned* pOut, const fg_histogram pHistogram) |
| 121 | { |
no test coverage detected