| 122 | } |
| 123 | |
| 124 | fg_err fg_get_plot_alpha_buffer(unsigned* pOut, const fg_plot pPlot) |
| 125 | { |
| 126 | try { |
| 127 | ARG_ASSERT(1, (pPlot!=0)); |
| 128 | |
| 129 | *pOut = getPlot(pPlot)->abo(); |
| 130 | } |
| 131 | CATCHALL |
| 132 | |
| 133 | return FG_ERR_NONE; |
| 134 | } |
| 135 | |
| 136 | fg_err fg_get_plot_radii_buffer(unsigned* pOut, const fg_plot pPlot) |
| 137 | { |