| 144 | } |
| 145 | |
| 146 | fg_err fg_get_image_size(unsigned* pOut, const fg_image pImage) |
| 147 | { |
| 148 | try { |
| 149 | ARG_ASSERT(1, (pImage!=0)); |
| 150 | |
| 151 | *pOut = getImage(pImage)->size(); |
| 152 | } |
| 153 | CATCHALL |
| 154 | |
| 155 | return FG_ERR_NONE; |
| 156 | } |
| 157 | |
| 158 | fg_err fg_render_image(const fg_window pWindow, |
| 159 | const fg_image pImage, |