| 74 | } |
| 75 | |
| 76 | fg_err fg_set_surface_legend(fg_surface pSurface, const char* pLegend) |
| 77 | { |
| 78 | try { |
| 79 | ARG_ASSERT(0, (pSurface!=0)); |
| 80 | ARG_ASSERT(1, (pLegend!=0)); |
| 81 | |
| 82 | getSurface(pSurface)->setLegend(pLegend); |
| 83 | } |
| 84 | CATCHALL |
| 85 | |
| 86 | return FG_ERR_NONE; |
| 87 | } |
| 88 | |
| 89 | fg_err fg_get_surface_vertex_buffer(unsigned* pOut, const fg_surface pSurface) |
| 90 | { |
no test coverage detected