sk_stream_read_u8() 개인적인 메소드

private sk_stream_read_u8 ( IntPtr stream ) : Byte
stream System.IntPtr
리턴 Byte
예제 #1
0
 public bool ReadByte(out Byte buffer)
 {
     fixed(Byte *b = &buffer)
     {
         return(SkiaApi.sk_stream_read_u8(Handle, b));
     }
 }
예제 #2
0
 public bool ReadByte(out Byte buffer)
 {
     return(SkiaApi.sk_stream_read_u8(Handle, out buffer));
 }
예제 #3
0
 public Byte ReadByte()
 {
     return(SkiaApi.sk_stream_read_u8(Handle));
 }