Lines Matching defs:offset_x

1730 /// void nk_window_get_scroll(struct nk_context *ctx, nk_uint *offset_x, nk_uint *offset_y);
1739 NK_API void nk_window_get_scroll(struct nk_context*, nk_uint *offset_x, nk_uint *offset_y);
1912 /// void nk_window_set_scroll(struct nk_context *ctx, nk_uint offset_x, nk_uint offset_y);
1921 NK_API void nk_window_set_scroll(struct nk_context*, nk_uint offset_x, nk_uint offset_y);
3471 NK_API void nk_popup_get_scroll(struct nk_context*, nk_uint *offset_x, nk_uint *offset_y);
3472 NK_API void nk_popup_set_scroll(struct nk_context*, nk_uint offset_x, nk_uint offset_y);
5330 nk_uint *offset_x;
15979 scroll_offset = (float)*layout->offset_x;
15986 *layout->offset_x = (nk_uint)scroll_offset;
16416 win->layout->offset_x = &win->scrollbar.x;
16532 nk_window_get_scroll(struct nk_context *ctx, nk_uint *offset_x, nk_uint *offset_y)
16540 if (offset_x)
16541 *offset_x = win->scrollbar.x;
16711 nk_window_set_scroll(struct nk_context *ctx, nk_uint offset_x, nk_uint offset_y)
16719 win->scrollbar.x = offset_x;
16876 popup->layout->offset_x = &popup->scrollbar.x;
16968 popup->layout->offset_x = &popup->scrollbar.x;
17025 nk_popup_get_scroll(struct nk_context *ctx, nk_uint *offset_x, nk_uint *offset_y)
17036 if (offset_x)
17037 *offset_x = popup->scrollbar.x;
17042 nk_popup_set_scroll(struct nk_context *ctx, nk_uint offset_x, nk_uint offset_y)
17053 popup->scrollbar.x = offset_x;
17320 layout->menu.offset.x = *layout->offset_x;
17347 *layout->offset_x = layout->menu.offset.x;
18091 ret.x += layout->at_x - (float)*layout->offset_x;
18107 ret.x += -layout->at_x + (float)*layout->offset_x;
18123 ret.x += layout->at_x - (float)*layout->offset_x;
18139 ret.x += -layout->at_x + (float)*layout->offset_x;
18208 bounds->x -= (float)*layout->offset_x;
18251 bounds->x -= (float)*layout->offset_x;
18286 bounds->x -= (float)*layout->offset_x;
18450 layout->at_x = header.x + (float)*layout->offset_x + style->tab.indent;
18633 layout->at_x = header.x + (float)*layout->offset_x + style->tab.indent;
18722 panel.layout->offset_x = x_offset;
18781 pan.scrollbar.x = *g->offset_x;