示例#1
0
 public static extern int nk_input_mouse_clicked(nk_input *inp, nk_buttons buttons, NkRect r);
示例#2
0
 public static extern nk_image nk_subimage_handle(NkHandle handle, ushort w, ushort h, NkRect sub_region);
示例#3
0
 public static extern nk_vec2 nk_rect_pos(NkRect r);
示例#4
0
 public static extern void nk_draw_list_add_image(nk_draw_list *dl, nk_image texture, NkRect rect, NkColor col);
示例#5
0
 public static extern nk_image nk_subimage_ptr(IntPtr ptr, ushort w, ushort h, NkRect sub_region);
示例#6
0
 public static extern void nk_push_custom(nk_command_buffer *cbuf, NkRect r, nk_command_custom_callback cb, NkHandle userdata);
示例#7
0
 public static extern void nk_draw_list_fill_rect(nk_draw_list *dl, NkRect rect, NkColor col, float rounding);
示例#8
0
 public static extern void nk_layout_space_push(nk_context *ctx, NkRect rect);
示例#9
0
 public static extern NkRect nk_layout_space_rect_to_local(nk_context *ctx, NkRect r);
示例#10
0
 public static extern int nk_popup_begin(nk_context *ctx, nk_popup_type type, byte *s, uint flags_nkflags, NkRect bounds);
示例#11
0
 public static extern int nk_contextual_begin(nk_context *ctx, uint flags_nkflags, nk_vec2 v, NkRect trigger_bounds);
示例#12
0
 public static extern void nk_window_set_bounds(nk_context *ctx, byte *name, NkRect bounds);
示例#13
0
 public abstract void Render(NkHandle Userdata, T Texture, NkRect ClipRect, uint Offset, uint Count);
示例#14
0
 public sealed override void Render(NkHandle Userdata, int Texture, NkRect ClipRect, uint Offset, uint Count) =>
 Render(Userdata, Textures[Texture], ClipRect, Offset, Count);
示例#15
0
 public static extern void nk_draw_text(nk_command_buffer *cbuf, NkRect r, byte *text, int len, nk_user_font *userfont, NkColor col, NkColor col2);
示例#16
0
 public static extern int nk_begin(nk_context *context, byte *title, NkRect bounds, uint flags_nkflags);
示例#17
0
 public static extern void nk_push_scissor(nk_command_buffer *cbuf, NkRect r);
示例#18
0
 public static extern int nk_begin_titled(nk_context *context, string name, string title, NkRect bounds, uint flags_nkflags);
示例#19
0
 public static extern void nk_draw_list_stroke_rect(nk_draw_list *dl, NkRect rect, NkColor col, float rounding, float thickness);
示例#20
0
 public static extern void nk_stroke_circle(nk_command_buffer *cbuf, NkRect r, float line_thickness, NkColor col);
示例#21
0
 public static extern void nk_draw_list_fill_rect_multi_color(nk_draw_list *dl, NkRect rect, NkColor left, NkColor top, NkColor right, NkColor bottom);
示例#22
0
 public static extern void nk_fill_rect(nk_command_buffer *cbuf, NkRect r, float rounding, NkColor col);
示例#23
0
 public static extern void nk_draw_list_add_text(nk_draw_list *dl, nk_user_font *userfont, NkRect rect, byte *text, int len, float font_height, NkColor col);
示例#24
0
 public static extern void nk_fill_rect_multi_color(nk_command_buffer *cbuf, NkRect r, NkColor left, NkColor top, NkColor right, NkColor bottom);
示例#25
0
 public static extern nk_image nk_subimage_id(int id, ushort w, ushort h, NkRect sub_region);
示例#26
0
 public static extern void nk_fill_circle(nk_command_buffer *cbuf, NkRect r, NkColor col);
示例#27
0
 public static extern void nk_triangle_from_direction(nk_vec2 *result, NkRect r, float pad_x, float pad_y, nk_heading heading);
示例#28
0
 public static extern void nk_draw_image(nk_command_buffer *cbuf, NkRect r, nk_image *img, NkColor col);
示例#29
0
 public static extern nk_vec2 nk_rect_size(NkRect r);
示例#30
0
 public static extern int nk_input_is_mouse_hovering_rect(nk_input *inp, NkRect r);