public bool ReadByte(out Byte buffer) { fixed(Byte *b = &buffer) { return(SkiaApi.sk_stream_read_u8(Handle, b)); } }
public bool ReadByte(out Byte buffer) { return(SkiaApi.sk_stream_read_u8(Handle, out buffer)); }
public Byte ReadByte() { return(SkiaApi.sk_stream_read_u8(Handle)); }