Lines Matching defs:nk_end

208 /// nk_end(&ctx);
1313 /// and `nk_end`. Calling any widgets outside these two functions will result in an
1330 /// functions to start window declarations and `nk_end` at the end. Furthermore it
1333 /// `nk_end` at the end of window declarations. Furthermore, do not attempt to
1341 /// nk_end(ctx);
1369 /// nk_end(ctx);
1392 /// nk_end | Needs to be called at the end of the window building process to process scaling, scrollbars and general cleanup
1480 /// until `nk_end` or `false(0)` otherwise for example if minimized
1500 /// until `nk_end` or `false(0)` otherwise for example if minimized
1503 /*/// #### nk_end
1508 /// void nk_end(struct nk_context *ctx);
1515 NK_API void nk_end(struct nk_context *ctx);
1536 /// Only call this function between calls `nk_begin_xxx` and `nk_end`
1552 /// Only call this function between calls `nk_begin_xxx` and `nk_end`
1568 /// Only call this function between calls `nk_begin_xxx` and `nk_end`
1584 /// Only call this function between calls `nk_begin_xxx` and `nk_end`
1600 /// Only call this function between calls `nk_begin_xxx` and `nk_end`
1616 /// Only call this function between calls `nk_begin_xxx` and `nk_end`
1618 /// Do not keep the returned panel pointer around, it is only valid until `nk_end`
1635 /// Only call this function between calls `nk_begin_xxx` and `nk_end`
1654 /// Only call this function between calls `nk_begin_xxx` and `nk_end`
1673 /// Only call this function between calls `nk_begin_xxx` and `nk_end`
1692 /// Only call this function between calls `nk_begin_xxx` and `nk_end`
1708 /// Only call this function between calls `nk_begin_xxx` and `nk_end`
1710 /// Do not keep the returned command buffer pointer around it is only valid until `nk_end`
1727 /// Only call this function between calls `nk_begin_xxx` and `nk_end`
1743 /// Only call this function between calls `nk_begin_xxx` and `nk_end`
1758 /// Only call this function between calls `nk_begin_xxx` and `nk_end`
1909 /// Only call this function between calls `nk_begin_xxx` and `nk_end`
2063 /// nk_end(...);
2087 /// nk_end(...);
2125 /// nk_end(...);
2161 /// nk_end(...);
2198 /// nk_end(...);
2227 /// nk_end(...);
2592 /// with `nk_begin_xxx` and before calling `nk_end`:
2619 /// nk_end(ctx);
3248 /// nk_end(ctx);
4365 nk_end(..)
16280 NK_ASSERT(!ctx->current && "if this triggers you missed a `nk_end` call");
16421 nk_end(struct nk_context *ctx)
17017 nk_end(ctx);
17312 nk_end(...);
17664 if (nk_begin(...) {...} nk_end(...); or
18793 nk_end(ctx);
19160 if (nk_begin(...) {...} nk_end(...); or
25513 /// building process (between function call nk_begin and nk_end).