예제 #1
0
 public static extern void nk_buffer_push(
     nk_buffer *buffer,
     nk_buffer_allocation_type atype,
     IntPtr memory,
     IntPtr size,
     IntPtr align
     );
예제 #2
0
 public static extern void nk_buffer_reset(nk_buffer *buffer, nk_buffer_allocation_type atype);
예제 #3
0
 public static void nk_buffer_reset(nk_buffer *buffer, nk_buffer_allocation_type atype) => _nk_buffer_reset(buffer, atype);
예제 #4
0
 public static void nk_buffer_mark(nk_buffer *buffer, nk_buffer_allocation_type atype) => _nk_buffer_mark(buffer, atype);
예제 #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);