public static extern void nk_buffer_push(
     nk_buffer *buffer,
     nk_buffer_allocation_type atype,
     IntPtr memory,
     IntPtr size,
     IntPtr align
     );
Exemple #2
0
 public static extern void nk_buffer_reset(nk_buffer *buffer, nk_buffer_allocation_type atype);
Exemple #3
0
 public static void nk_buffer_reset(nk_buffer *buffer, nk_buffer_allocation_type atype) => _nk_buffer_reset(buffer, atype);
Exemple #4
0
 public static void nk_buffer_mark(nk_buffer *buffer, nk_buffer_allocation_type atype) => _nk_buffer_mark(buffer, atype);
Exemple #5
0
 public static void nk_buffer_push(nk_buffer *buffer, nk_buffer_allocation_type atype, IntPtr memory, IntPtr size, IntPtr align) => _nk_buffer_push(buffer, atype, memory, size, align);