Lines Matching defs:off
1157 enum nk_anti_aliasing line_AA; /* line anti-aliasing flag can be turned off if you are tight on memory */
1158 enum nk_anti_aliasing shape_AA; /* shape anti-aliasing flag can be turned off if you are tight on memory */
2714 /// int nk_group_scrolled_begin(struct nk_context*, struct nk_scroll *off, const char *title, nk_flags);
2726 NK_API int nk_group_scrolled_begin(struct nk_context*, struct nk_scroll *off, const char *title, nk_flags);
11332 nk_int ins, i,j=0,m,n, next_move, was_off=0, off, start_off=0;
11351 off = m - n; /* starting offset for uninterpreted data, regardless of how m ends up being calculated */
11360 vertices[off+i].type = flags;
11366 flags = vertices[off+i].type;
11376 vertices[off+i].x = (nk_short) x;
11382 flags = vertices[off+i].type;
11392 vertices[off+i].y = (nk_short) y;
11400 flags = vertices[off+i].type;
11401 x = (nk_short) vertices[off+i].x;
11402 y = (nk_short) vertices[off+i].y;
11411 /* if we start off with an off-curve point, then when we need to find a point on the curve */
11415 if (!(vertices[off+i+1].type & 1)) {
11417 sx = (x + (nk_int) vertices[off+i+1].x) >> 1;
11418 sy = (y + (nk_int) vertices[off+i+1].y) >> 1;
11421 sx = (nk_int) vertices[off+i+1].x;
11422 sy = (nk_int) vertices[off+i+1].y;
11436 if (was_off) /* two off-curve control points in a row means interpolate an on-curve midpoint */
11731 /* line with y_top, but that may be off the line segment. */