sk_stream_read_u16() private method

private sk_stream_read_u16 ( IntPtr stream ) : UInt16
stream System.IntPtr
return UInt16
Ejemplo n.º 1
0
 public bool ReadUInt16(out UInt16 buffer)
 {
     fixed(UInt16 *b = &buffer)
     {
         return(SkiaApi.sk_stream_read_u16(Handle, b));
     }
 }
Ejemplo n.º 2
0
 public bool ReadUInt16(out UInt16 buffer)
 {
     return(SkiaApi.sk_stream_read_u16(Handle, out buffer));
 }
Ejemplo n.º 3
0
 public UInt16 ReadUInt16()
 {
     return(SkiaApi.sk_stream_read_u16(Handle));
 }