| 6090 | return nk_null_rect; |
| 6091 | } |
| 6092 | NK_API struct nk_rect |
| 6093 | nk_rect(float x, float y, float w, float h) |
| 6094 | { |
| 6095 | struct nk_rect r; |
| 6096 | r.x = x; r.y = y; |
| 6097 | r.w = w; r.h = h; |
| 6098 | return r; |
| 6099 | } |
| 6100 | NK_API struct nk_rect |
| 6101 | nk_recti(int x, int y, int w, int h) |
| 6102 | { |
no outgoing calls
no test coverage detected