Lines Matching defs:last
836 /// Copies the last mouse scroll value to nuklear. Is generally
1049 /// void *last = calloc(1,64*1024);
1058 /// if (memcmp(cmds, last, ctx.memory.allocated)) {
1059 /// memcpy(last,cmds,ctx.memory.allocated);
1270 /// Returns vertex draw command pointer pointing to the end of the last vertex draw command inside the vertex draw command buffer
1286 /// Returns vertex draw command pointer pointing to the end of the last vertex draw command inside the vertex draw command buffer
2097 /// repeating like the last two layouting functions.
3947 /* font codepoint ranges as pairs of (from/to) and 0 as last element */
3963 /* merges this font into the last font */
4568 nk_size begin, end, last;
5275 struct nk_vec2 last;
5316 nk_size last;
6740 /* apply score for last match */
8748 cb->last = b->allocated;
8757 b->last = 0;
8780 b->last = (nk_size)((nk_byte*)cmd - (nk_byte*)b->base->memory.ptr);
15140 buffer->last = buffer->begin;
15162 buf->parent = win->buffer.last;
15163 buf->last = buf->begin;
15175 buf->last = win->buffer.last;
15233 if (it->buffer.last == it->buffer.begin || (it->flags & NK_WINDOW_HIDDEN)||
15237 cmd = nk_ptr_add(struct nk_command, buffer, it->buffer.last);
15238 while (next && ((next->buffer.last == next->buffer.begin) ||
15255 cmd = nk_ptr_add(struct nk_command, buffer, buf->last);
15421 /* if possible remove last element from back of fixed memory buffer */
15859 /* update the current cursor Y-position to point over the last added widget */
21781 /* below all text, return 'after' last character */
21806 /* if the last character is a newline, return that.
21807 * otherwise return 'after' the last character */
21847 /* if it's at the end, then find the last line -- simpler than trying to
21955 /* move cursor to last character of selection */
22537 if the last is true, we have to bail */
22855 /* draw last line */
24150 g->slots[slot].last.x = g->x;
24151 g->slots[slot].last.y = (g->y + g->h) - ratio * (float)g->h;
24153 bounds.x = g->slots[slot].last.x - 2;
24154 bounds.y = g->slots[slot].last.y - 2;
24159 NK_INBOX(i->mouse.pos.x,i->mouse.pos.y, g->slots[slot].last.x-3, g->slots[slot].last.y-3, 6, 6)){
24170 /* draw a line between the last data point and the new one */
24174 nk_stroke_line(out, g->slots[slot].last.x, g->slots[slot].last.y, cur.x, cur.y, 1.0f, color);
24192 g->slots[slot].last.x = cur.x;
24193 g->slots[slot].last.y = cur.y;
25514 /// - 2017/09/11 (1.40.9) - Fixed window background flag if background window is declared last.
25527 /// - 2017/06/08 (1.40.0) - Removed the breaking part of last commit. Auto layout now only
25575 /// storage. Just like last the `nk_group` commit the main
25619 /// - 2016/09/13 (1.20.2) - Fixed slider behavior hopefully for the last time. This time