| 98 | } |
| 99 | |
| 100 | fg_err fg_get_plot_vertex_buffer(unsigned* pOut, const fg_plot pPlot) |
| 101 | { |
| 102 | try { |
| 103 | ARG_ASSERT(1, (pPlot!=0)); |
| 104 | |
| 105 | *pOut = getPlot(pPlot)->vbo(); |
| 106 | } |
| 107 | CATCHALL |
| 108 | |
| 109 | return FG_ERR_NONE; |
| 110 | } |
| 111 | |
| 112 | fg_err fg_get_plot_color_buffer(unsigned* pOut, const fg_plot pPlot) |
| 113 | { |