sk_stream_read_u32() private method

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