| 43 | } |
| 44 | |
| 45 | fg_err fg_release_histogram(fg_histogram pHistogram) |
| 46 | { |
| 47 | try { |
| 48 | ARG_ASSERT(0, (pHistogram!=0)); |
| 49 | |
| 50 | delete getHistogram(pHistogram); |
| 51 | } |
| 52 | CATCHALL |
| 53 | |
| 54 | return FG_ERR_NONE; |
| 55 | } |
| 56 | |
| 57 | fg_err fg_set_histogram_color(fg_histogram pHistogram, |
| 58 | const float pRed, const float pGreen, |
no test coverage detected