Lines Matching defs:image
2781 /// and optionally an image to be displayed and the initial collapse state from
2821 /// nk_tree_image_push | Start a collapsable UI section with image and label header
2822 /// nk_tree_image_push_id | Start a collapsable UI section with image and label header and internal state management callable in a look
2823 /// nk_tree_image_push_hashed | Start a collapsable UI section with image and label header and internal state management with full control over internal unique ID use to store state
2827 /// nk_tree_state_image_push | Start a collapsable UI section with image and label header and external state management
2896 /// Start a collapsable UI section with image and label header
2919 /// Start a collapsable UI section with image and label header and internal state
2987 /// Start a collapsable UI section with image and label header and external state management
3853 for every selected glyph to image by calling `nk_font_atlas_bake`.
3854 The baking process returns image memory, width and height which can be used to
3855 either create your own image object or upload it to any graphics library.
3857 will free all temporary memory including the font atlas image so make sure
4812 struct nk_image image;
5937 NK_LIB void nk_draw_button_text_image(struct nk_command_buffer *out, const struct nk_rect *bounds, const struct nk_rect *label, const struct nk_rect *image, nk_flags state, const struct nk_style_button *style, const char *str, int len, const struct nk_user_font *font, const struct nk_image *img);
10361 /* draw every glyph image */
10373 /* calculate and draw glyph drawing rectangle and image */
13763 /* allocate memory for the baked image font atlas */
13769 /* bake glyphs and custom white pixel into image */
13776 /* convert alpha8 image into rgba32 image */
14253 i.data.image = img;
15741 nk_draw_image(&win->buffer, header, &background->data.image, nk_white);
15816 nk_draw_image(out, body, &style->window.fixed_background.data.image, nk_white);
16031 nk_draw_image(out, scaler, &item->data.image, nk_white);
18393 nk_draw_image(out, header, &background->data.image, nk_white);
18430 /* draw optional image icon */
18579 nk_draw_image(out, header, &background->data.image, nk_white);
19785 nk_draw_image(out, *bounds, &background->data.image, nk_white);
20011 const struct nk_rect *image, nk_flags state, const struct nk_style_button *style,
20031 nk_draw_image(out, *image, img, nk_white);
20404 } else nk_draw_image(out, *selector, &background->data.image, nk_white);
20407 nk_draw_image(out, *cursors, &cursor->data.image, nk_white);
20446 } else nk_draw_image(out, *selector, &background->data.image, nk_white);
20449 nk_draw_image(out, *cursors, &cursor->data.image, nk_white);
20717 nk_draw_image(out, *bounds, &background->data.image, nk_white);
21089 nk_draw_image(out, *bounds, &background->data.image, nk_white);
21101 nk_draw_image(out, *visual_cursor, &cursor->data.image, nk_white);
21315 } else nk_draw_image(out, *bounds, &background->data.image, nk_white);
21321 } else nk_draw_image(out, *scursor, &cursor->data.image, nk_white);
21502 nk_draw_image(out, *bounds, &background->data.image, nk_white);
21509 } else nk_draw_image(out, *scroll, &cursor->data.image, nk_white);
23051 } else nk_draw_image(out, bounds, &background->data.image, nk_white);}
23615 nk_draw_image(out, *bounds, &background->data.image, nk_white);
24082 nk_draw_image(&win->buffer, bounds, &background->data.image, nk_white);
24630 nk_draw_image(&win->buffer, header, &background->data.image, nk_white);
24716 nk_draw_image(&win->buffer, header, &background->data.image,nk_white);
24801 nk_draw_image(&win->buffer, header, &background->data.image, nk_white);
24890 nk_draw_image(&win->buffer, header, &background->data.image, nk_white);
24900 struct nk_rect image;
24923 image.x = header.x + style->combo.content_padding.x;
24924 image.y = header.y + style->combo.content_padding.y;
24925 image.h = header.h - 2 * style->combo.content_padding.y;
24926 image.w = image.h;
24927 nk_draw_symbol(&win->buffer, symbol, image, text.background, symbol_color,
24932 label.x = image.x + image.w + style->combo.spacing.x + style->combo.content_padding.x;
24976 nk_draw_image(&win->buffer, header, &background->data.image, nk_white);
25004 /* draw image */
25059 nk_draw_image(&win->buffer, header, &background->data.image, nk_white);
25069 struct nk_rect image;
25091 /* draw image */
25092 image.x = header.x + style->combo.content_padding.x;
25093 image.y = header.y + style->combo.content_padding.y;
25094 image.h = header.h - 2 * style->combo.content_padding.y;
25095 image.w = image.h;
25096 nk_draw_image(&win->buffer, image, &img, nk_white);
25100 label.x = image.x + image.w + style->combo.spacing.x + style->combo.content_padding.x;