Lines Matching defs:thickness

4775 NK_API void nk_draw_list_path_stroke(struct nk_draw_list*, struct nk_color, enum nk_draw_list_stroke closed, float thickness);
4778 NK_API void nk_draw_list_stroke_line(struct nk_draw_list*, struct nk_vec2 a, struct nk_vec2 b, struct nk_color, float thickness);
4779 NK_API void nk_draw_list_stroke_rect(struct nk_draw_list*, struct nk_rect rect, struct nk_color, float rounding, float thickness);
4780 NK_API void nk_draw_list_stroke_triangle(struct nk_draw_list*, struct nk_vec2 a, struct nk_vec2 b, struct nk_vec2 c, struct nk_color, float thickness);
4781 NK_API void nk_draw_list_stroke_circle(struct nk_draw_list*, struct nk_vec2 center, float radius, struct nk_color, unsigned int segs, float thickness);
4782 NK_API void nk_draw_list_stroke_curve(struct nk_draw_list*, struct nk_vec2 p0, struct nk_vec2 cp0, struct nk_vec2 cp1, struct nk_vec2 p1, struct nk_color, unsigned int segments, float thickness);
4783 NK_API void nk_draw_list_stroke_poly_line(struct nk_draw_list*, const struct nk_vec2 *pnts, const unsigned int cnt, struct nk_color, enum nk_draw_list_stroke, float thickness, enum nk_anti_aliasing);
9626 float thickness, enum nk_anti_aliasing aliasing)
9638 thick_line = thickness > 1.0f;
9752 const float half_inner_thickness = (thickness - AA_SIZE) * 0.5f;
9846 dx = diff.x * (thickness * 0.5f);
9847 dy = diff.y * (thickness * 0.5f);
10137 enum nk_draw_list_stroke closed, float thickness)
10144 closed, thickness, list->config.line_AA);
10149 struct nk_vec2 b, struct nk_color col, float thickness)
10160 nk_draw_list_path_stroke(list, col, NK_STROKE_OPEN, thickness);
10179 struct nk_color col, float rounding, float thickness)
10189 } nk_draw_list_path_stroke(list, col, NK_STROKE_CLOSED, thickness);
10238 struct nk_vec2 b, struct nk_vec2 c, struct nk_color col, float thickness)
10245 nk_draw_list_path_stroke(list, col, NK_STROKE_CLOSED, thickness);
10260 float radius, struct nk_color col, unsigned int segs, float thickness)
10267 nk_draw_list_path_stroke(list, col, NK_STROKE_CLOSED, thickness);
10272 struct nk_color col, unsigned int segments, float thickness)
10278 nk_draw_list_path_stroke(list, col, NK_STROKE_OPEN, thickness);