| 6159 | return r; |
| 6160 | } |
| 6161 | NK_API struct nk_vec2 |
| 6162 | nk_vec2(float x, float y) |
| 6163 | { |
| 6164 | struct nk_vec2 ret; |
| 6165 | ret.x = x; ret.y = y; |
| 6166 | return ret; |
| 6167 | } |
| 6168 | NK_API struct nk_vec2 |
| 6169 | nk_vec2i(int x, int y) |
| 6170 | { |
no outgoing calls
no test coverage detected